Commit 17c7ff8

HPCesia <me@hpcesia.com>
2025-02-19 14:32:36
feat: aside tags color
1 parent e9e929e
Changed files (1)
src
components
aside
siteinfo
src/components/aside/siteinfo/Tags.astro
@@ -12,11 +12,7 @@ const tagsMap = await getTags();
   >
     {
       Array.from(tagsMap.entries()).map(([tag, count]) => (
-        <Button
-          href={getTagUrl(tag)}
-          title={`${tag}`}
-          class="btn-ghost btn-primary btn-sm gap-0"
-        >
+        <Button href={getTagUrl(tag)} title={`${tag}`} class="btn-ghost btn-sm gap-0">
           {tag}
           <sup>{count}</sup>
         </Button>