chore: styles

This commit is contained in:
Cory Dransfeldt 2024-10-24 06:34:54 -07:00
parent b93a76a0bb
commit 8179e5159d
No known key found for this signature in database
5 changed files with 5 additions and 11 deletions

View file

@ -17,7 +17,6 @@
<li><a href="{{ artist.url }}">{{ artist.name }}</a>{%- if artist.total_plays > 0 -%}: <strong class="highlight-text">{{ artist.total_plays }} {{ playLabel }}</strong>{%- endif -%}</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% comment %} render related books {% endcomment %}
{%- if books -%}
@ -30,7 +29,6 @@
<li><a href="{{ book.url }}">{{ book.title }}</a> by {{ book.author }}</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% comment %} render related genres {% endcomment %}
{%- if genres -%}
@ -43,7 +41,6 @@
<li><a href="{{ genre.url }}">{{ genre.name }}</a></li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% comment %} render related movies {% endcomment %}
{%- if movies -%}
@ -56,7 +53,6 @@
<li><a href="{{ movie.url }}">{{ movie.title }}</a> ({{ movie.year }})</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% comment %} render related posts {% endcomment %}
{%- if posts -%}
@ -69,7 +65,6 @@
<li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date: "%B %e, %Y" }})</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% comment %} render related shows {% endcomment %}
{%- if shows -%}
@ -82,6 +77,5 @@
<li><a href="{{ show.url }}">{{ show.title }}</a> ({{ show.year }})</li>
{% endfor %}
</ul>
<hr />
{%- endif -%}
{% if artists or books or genres or movies or posts or shows %}</div>{% endif %}

View file

@ -1,3 +1,3 @@
<script type="module" src="/assets/scripts/components/youtube-video-element.js?v={% appVersion %}"></script>
<style>youtube-video{aspect-ratio:16/9;width:100%}</style>
<style>youtube-video{aspect-ratio:16/9;width:100%;display:flex}</style>
<youtube-video controls src="{{ url }}"></youtube-video>