Commit 3df9b61

HPCesia <me@hpcesia.com>
2025-02-10 13:01:04
perf: tags list style
1 parent 8c92120
Changed files (1)
src
components
aside
siteinfo
src/components/aside/siteinfo/Tags.astro
@@ -12,7 +12,11 @@ const tagsMap = await getTags();
   >
     {
       Array.from(tagsMap.entries()).map(([tag, count]) => (
-        <Button href={getTagUrl(tag)} title={`${tag}`} class="btn-ghost btn-primary btn-sm">
+        <Button
+          href={getTagUrl(tag)}
+          title={`${tag}`}
+          class="btn-ghost btn-primary btn-sm gap-0"
+        >
           {tag}
           <sup>{count}</sup>
         </Button>