diff --git a/front/src/components/audio/ArtistCreditLabel.vue b/front/src/components/audio/ArtistCreditLabel.vue index 0043baf71..f33293054 100644 --- a/front/src/components/audio/ArtistCreditLabel.vue +++ b/front/src/components/audio/ArtistCreditLabel.vue @@ -66,5 +66,6 @@ const getRoute = (ac: ArtistCredit) => { diff --git a/front/src/components/audio/ChannelSerieCard.vue b/front/src/components/audio/ChannelSerieCard.vue index 3de332eeb..92b8083a0 100644 --- a/front/src/components/audio/ChannelSerieCard.vue +++ b/front/src/components/audio/ChannelSerieCard.vue @@ -1,79 +1,78 @@ + + diff --git a/front/src/components/audio/PlayButton.vue b/front/src/components/audio/PlayButton.vue index 64ae38f5c..936ba1215 100644 --- a/front/src/components/audio/PlayButton.vue +++ b/front/src/components/audio/PlayButton.vue @@ -25,6 +25,7 @@ interface Props extends PlayOptionsProps { iconOnly?: boolean playing?: boolean paused?: boolean + lowHeight?: boolean // TODO(wvffle): Remove after https://github.com/vuejs/core/pull/4512 is merged isPlayable?: boolean @@ -56,7 +57,8 @@ const props = withDefaults(defineProps(), { iconOnly: () => false, isPlayable: () => false, playing: () => false, - paused: () => false + paused: () => false, + lowHeight: () => false }) // (1) Create a PlayButton @@ -125,6 +127,8 @@ const isOpen = ref(false) :class="[...buttonClasses, 'play-button']" :isloading="isLoading" :dropdown-only="dropdownOnly" + :low-height="lowHeight || undefined" + style="align-self: start;" @click.stop.prevent="replacePlay()" @split-click="isOpen = !isOpen" > @@ -238,6 +242,7 @@ const isOpen = ref(false) :round="iconOnly" :primary="iconOnly && !discrete" :ghost="discrete" + :low-height="lowHeight || undefined" @click.stop.prevent="replacePlay()" >