From 23ea734d66a8d2529a385969184617ebaff50842 Mon Sep 17 00:00:00 2001 From: Daniel LaForce Date: Wed, 23 Apr 2025 14:06:11 -0600 Subject: [PATCH] fix: Close CSS block in [tag].astro --- src/pages/tag/[tag].astro | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/pages/tag/[tag].astro b/src/pages/tag/[tag].astro index 7accce9..de4892a 100644 --- a/src/pages/tag/[tag].astro +++ b/src/pages/tag/[tag].astro @@ -243,4 +243,27 @@ const sortedPosts = posts.sort((a, b) => { padding: 0.75rem 1.5rem; background: var(--bg-secondary); border: 1px solid var(--border-primary); - border-radius: 30px; \ No newline at end of file + border-radius: 30px; + color: var(--text-primary); + font-size: var(--font-size-md); + text-decoration: none; + transition: all 0.2s ease; + width: fit-content; + } + + .all-tags-link:hover { + background: var(--bg-tertiary); + transform: translateY(-2px); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); + } + + @media (max-width: 768px) { + .tag-hero h1 { + font-size: var(--font-size-2xl); + } + + .posts-grid { + grid-template-columns: 1fr; + } + } + \ No newline at end of file