Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
andyluss committed Jul 11, 2024
1 parent 4dcbeef commit d2f7f56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layouts/IndexLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const { posts, tags, levels } = await getAll(collection, tag, level);
>
<a
href={`/${collection}/filter/${lvl}-${tag ?? "All"}`}
class="text-orange-500 hover:text-orange-900"
class="text-orange-600 hover:text-orange-500"
>
{lvl === "All" ? "全部" : "⭐️".repeat(lvl) || ""}({count})
</a>
Expand All @@ -62,7 +62,7 @@ const { posts, tags, levels } = await getAll(collection, tag, level);
>
<a
href={`/${collection}/filter/${level ?? "All"}-${tg}`}
class="text-blue-500 hover:text-blue-900"
class="text-blue-600 hover:text-blue-500"
>
{tg === "All" ? "全部" : tg}({count})
</a>
Expand Down

0 comments on commit d2f7f56

Please sign in to comment.