[web] Fix spacing of title text on the "Radio" page.

The "Radio" page has now the same spacing between the title and subtitle as the one on other pages.
This commit is contained in:
Alain Nussbaumer 2023-07-05 21:48:51 +02:00
parent ae2a789c22
commit 4cddfa4dfc

View File

@ -3,12 +3,12 @@
<content-with-heading> <content-with-heading>
<template #heading-left> <template #heading-left>
<p class="title is-4" v-text="$t('page.radio.title')" /> <p class="title is-4" v-text="$t('page.radio.title')" />
</template>
<template #content>
<p <p
class="heading has-text-centered-mobile" class="heading has-text-centered-mobile"
v-text="$t('page.radio.count', { count: tracks.total })" v-text="$t('page.radio.count', { count: tracks.total })"
/> />
</template>
<template #content>
<list-tracks :tracks="tracks" /> <list-tracks :tracks="tracks" />
</template> </template>
</content-with-heading> </content-with-heading>