stop using obsolete border for iframe

This commit is contained in:
Ell 2023-08-12 13:51:31 +02:00
parent a0bc1cfd38
commit e04e12e662
3 changed files with 3 additions and 2 deletions

View file

@ -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>

View file

@ -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 %}

View file

@ -168,6 +168,7 @@ pre.highlight {
left: 0;
width: 100%;
height: 100%;
border: none;
}
.roadmap {