From f4e153988996d0324777cdd0424f0a55dcb7542a Mon Sep 17 00:00:00 2001 From: fiatcode Date: Thu, 22 Jan 2026 17:52:59 +0700 Subject: [PATCH] fix: update Tag component size variants for consistency --- src/components/BlogPost.astro | 2 +- src/components/Tag.astro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/BlogPost.astro b/src/components/BlogPost.astro index d32de1d..1c9bd24 100644 --- a/src/components/BlogPost.astro +++ b/src/components/BlogPost.astro @@ -43,7 +43,7 @@ const { title, description, date, tags } = Astro.props; { tags?.map((tag) => (
  • - +
  • )) } diff --git a/src/components/Tag.astro b/src/components/Tag.astro index 1a26f22..0690b6a 100644 --- a/src/components/Tag.astro +++ b/src/components/Tag.astro @@ -9,7 +9,7 @@ interface Props { const { name, count, href, variant = "default" } = Astro.props; const linkHref = href || `/tags/${name}`; const isSmall = variant === "small"; -const textSize = isSmall ? "text-xs" : "text-sm"; +const textSize = isSmall ? "text-sm" : "text-base"; ---