From ef0c8077e343e56f5953785ac0304f2e6f3d6067 Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Tue, 17 Mar 2026 11:51:47 +0100 Subject: [PATCH] decrease tag element size in tags listing --- src/web/pages/tags.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/pages/tags.rs b/src/web/pages/tags.rs index 7bf2d1a..cace3b9 100644 --- a/src/web/pages/tags.rs +++ b/src/web/pages/tags.rs @@ -39,8 +39,8 @@ pub async fn page(req: Request) -> Result { div class="max-w-4xl mx-auto mt-4 flex gap-2" { @for tag in &tags { div class="rounded-full px-3 py-1 bg-neutral-200/10 border border-neutral-200/15 flex" { - span class="text-neutral-400" {"#"} - span {(tag.name)} + span class="text-neutral-400 text-sm" {"#"} + span class="text-sm" {(tag.name)} div class="w-px h-2/3 my-auto mx-2 bg-neutral-200/15" {} div class="text-xs flex items-center" { "10" span class="*:size-3 ml-1 text-neutral-400" {(PreEscaped(icons::SCROLL_TEXT))}