Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
derekmbrown committed Dec 2, 2024
1 parent 2dd495f commit 9960bc1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/tags/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ tags.sort()
MetaTag="website",
MetaUrl="https://derekbrown.io"
>
<div class="flex flex-wrap gap-y-3">
<div class="flex flex-wrap gap-y-5">
{tags.map(tag => (
<a href={`/tags/${tag}`}>
<div class="bg-[#1E262F] px-4 py-2 mr-3 rounded-lg text-lg flex">
<div>
{tag} |
<div class="bg-[#1E262F] rounded-lg mr-6 text-xl flex items-center">
<div class="px-5 py-2">
{tag}
</div>
<div class="ml-2">
<div class="px-3 py-2 bg-[#adbccd] text-[#0F141B] rounded-lg font-semibold">
{tagsWithNotes[tag].length}
</div>
</div>
Expand Down

0 comments on commit 9960bc1

Please sign in to comment.