fix(style): consistent style in artist credit label
This commit is contained in:
parent
117789358d
commit
832abf0e24
|
@ -24,7 +24,7 @@ const getRoute = (ac: ArtistCredit) => {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Layout flex>
|
<Layout flex gap-8>
|
||||||
<template
|
<template
|
||||||
v-for="ac in props.artistCredit"
|
v-for="ac in props.artistCredit"
|
||||||
:key="ac.artist.id"
|
:key="ac.artist.id"
|
||||||
|
@ -43,11 +43,13 @@ const getRoute = (ac: ArtistCredit) => {
|
||||||
<i
|
<i
|
||||||
v-else
|
v-else
|
||||||
class="bi bi-person-circle"
|
class="bi bi-person-circle"
|
||||||
|
style="font-size: 24px;"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
{{ ac.credit }}
|
{{ ac.credit }}
|
||||||
</Pill>
|
</Pill>
|
||||||
</router-link>
|
</router-link>
|
||||||
|
<span>{{ ac.joinphrase }}</span>
|
||||||
</template>
|
</template>
|
||||||
</Layout>
|
</Layout>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue