fix: Close CSS block in [tag].astro

This commit is contained in:
Daniel LaForce 2025-04-23 14:06:11 -06:00
parent e66e605479
commit 23ea734d66
1 changed files with 24 additions and 1 deletions

View File

@ -244,3 +244,26 @@ const sortedPosts = posts.sort((a, b) => {
background: var(--bg-secondary);
border: 1px solid var(--border-primary);
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;
}
}
</style>