mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 03:13:30 +01:00
stop using obsolete border for iframe
This commit is contained in:
parent
a0bc1cfd38
commit
e04e12e662
3 changed files with 3 additions and 2 deletions
|
@ -21,6 +21,6 @@
|
|||
|
||||
<h2>Watch the Trailer</h2>
|
||||
<div class="video-embed">
|
||||
<iframe src="https://www.youtube.com/embed/dl4JCzOpnGE" title="Tiny Life Trailer" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
<iframe src="https://www.youtube.com/embed/dl4JCzOpnGE" title="Tiny Life Trailer" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -28,7 +28,7 @@ summary: A fun simulation game where you mess with people's lives
|
|||
{% endif %}
|
||||
{% if section.embeds %}
|
||||
<div class="video-embed">
|
||||
<iframe src="{{ content.embed }}" title="{{ content.name }} Embed" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
<iframe src="{{ content.embed }}" title="{{ content.name }} Embed" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -168,6 +168,7 @@ pre.highlight {
|
|||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.roadmap {
|
||||
|
|
Loading…
Reference in a new issue