adjusted line height of banner subtitle to avoid being too close to the hr

This commit is contained in:
2026-04-02 16:21:30 +02:00
parent 83c6732b3a
commit 3dd22c04dc

View File

@@ -28,7 +28,7 @@
{#if subtitle} {#if subtitle}
<p class="subtitle">[ {subtitle} ]</p> <p class="subtitle">[ {subtitle} ]</p>
{/if} {/if}
{#if tags} {#if tags.length}
<div class="tag-container"> <div class="tag-container">
{#each tags as tag} {#each tags as tag}
<span class="post-tag">{tag}</span> <span class="post-tag">{tag}</span>
@@ -120,10 +120,9 @@
.subtitle { .subtitle {
font-family: var(--font-mono); font-family: var(--font-mono);
/* width: fit-content; */
font-weight: 500; font-weight: 500;
font-size: 1.0rem; font-size: 1.0rem;
line-height: 1.0rem; line-height: 1.4rem;
margin: 0; margin: 0;
} }