added blog post tag filter buttons

This commit is contained in:
2026-03-31 14:48:38 +02:00
parent 6440a098bf
commit 9dcb9823a8
4 changed files with 58 additions and 15 deletions

View File

@@ -19,7 +19,7 @@
<p class="entry-description">{post.post.description}</p>
<div class="entry-tag-container">
{#each post.post.tags as tag}
<span>{tag}</span>
<span class="post-tag">{tag}</span>
{/each}
</div>
</div>
@@ -99,15 +99,4 @@
flex-direction: row;
flex-wrap: nowrap;
}
.entry-tag-container span {
font-family: var(--font-mono);
font-size: 0.8rem;
background-color: var(--color-background-highlight-alt);
margin: 0;
padding: 4px;
border-radius: 8px;
line-height: 1.0rem;
font-weight: 600;
}
</style>