Reduce the font of the feed description

This commit is contained in:
Fabio Manganiello 2023-01-20 23:35:43 +01:00
parent dfd75221ca
commit 3ad11a4788
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@
</div> </div>
<div class="description" v-if="feed.description?.length"> <div class="description" v-if="feed.description?.length">
<h2 v-if="feed.html.description" v-html="feed.description" /> <span v-if="feed.html.description" v-html="feed.description" />
<h2 v-else v-text="feed.description" /> <span v-else v-text="feed.description" />
</div> </div>
</header> </header>
@ -190,7 +190,7 @@ main {
font-size: 1.25em; font-size: 1.25em;
.description { .description {
max-width: 45em; padding: 1em;
text-align: justify; text-align: justify;
} }
} }