fix(style): consistent style in artist credit label

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

View File

@ -24,7 +24,7 @@ const getRoute = (ac: ArtistCredit) => {
</script>
<template>
<Layout flex>
<Layout flex gap-8>
<template
v-for="ac in props.artistCredit"
:key="ac.artist.id"
@ -43,11 +43,13 @@ const getRoute = (ac: ArtistCredit) => {
<i
v-else
class="bi bi-person-circle"
style="font-size: 24px;"
/>
</template>
{{ ac.credit }}
</Pill>
</router-link>
<span>{{ ac.joinphrase }}</span>
</template>
</Layout>
</template>