fix(style): consistent style in album card

This commit is contained in:
ArneBo 2025-03-29 13:02:24 +01:00
parent 0b83e9441f
commit 117789358d
1 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import { momentFormat } from '~/utils/filters'
import defaultCover from '~/assets/audio/default-cover.png'
import PlayButton from '~/components/audio/PlayButton.vue'
import Layout from '~/components/ui/Layout.vue'
import Card from '~/components/ui/Card.vue'
import Link from '~/components/ui/Link.vue'
import Spacer from '~/components/ui/Spacer.vue'
@ -50,6 +51,7 @@ const imageUrl = computed(() => props.album.cover?.urls.original
</template>
<Layout
flex
gap-4
style="overflow: hidden;"
>
<template
@ -62,7 +64,7 @@ const imageUrl = computed(() => props.album.cover?.urls.original
>
{{ ac.credit ?? t('components.Queue.meta.unknownArtist') }}
</Link>
<span>{{ ac.joinphrase }}</span>
<span style="font-weight: 600;">{{ ac.joinphrase }}</span>
</template>
</Layout>