Skip to content

Commit

Permalink
Merge pull request #795 from meiamsome/fix/related-content-layout-mis…
Browse files Browse the repository at this point in the history
…alignment

FIX: correct layout misalignment in WatchSideBar
  • Loading branch information
sphinxrave authored Dec 29, 2024
2 parents b821585 + a66b418 commit 571559c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/watch/WatchSideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<div>
<template v-if="video.songcount">
<span class="lightup d-flex">
<a class="d-block text-overline mx-2 my-1" @click="toggleExpansion('songs')">
<a class="d-block text-overline mx-2 my-1 pr-2" @click="toggleExpansion('songs')">
{{ hidden.songs ? "+" : "-" }} {{ video.songcount }} {{ relationI18N("songs") }}
</a>
<v-spacer />
<v-btn
icon
small
tile
class="mr-2"
class="mr-2 my-1"
@click="showDetailed = !showDetailed"
>
<v-icon small> {{ mdiTimerOutline }} </v-icon>
Expand All @@ -19,7 +19,7 @@
icon
small
tile
class="mr-2"
class="mr-2 my-1"
@click="addToMusicPlaylist"
>
<v-icon small> {{ icons.mdiMusic }} </v-icon>
Expand Down Expand Up @@ -50,7 +50,7 @@
<div :key="`band${relation}`" class="lightup d-flex">
<a
:key="`${relation}-title`"
class="d-block text-overline mx-2 my-1"
class="d-block text-overline mx-2 my-1 pr-2"
@click="toggleExpansion(relation)"
>
{{ hidden[relation] ? "+" : "-" }} {{ related[relation].length }} {{ relationI18N(relation) }}
Expand All @@ -67,7 +67,7 @@
tile
:disabled="!simulcastMultiviewLink.ok"
small
class="mr-2"
class="mr-2 my-1"
:to="simulcastMultiviewLink.url"
>
<v-icon small>
Expand All @@ -88,7 +88,7 @@
icon
tile
small
class="mr-2"
class="mr-2 my-1"
@click="addToPlaylist(related[relation])"
>
<v-icon small>
Expand Down

0 comments on commit 571559c

Please sign in to comment.