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