wf4/app/assets/css/blog/overview.css
webfussel 4104477533 add: article view
View for blog articles
2025-07-11 13:32:59 +02:00

16 lines
No EOL
337 B
CSS

.BlogOverview {
& .category-list {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
list-style: none;
}
& .article-overview {
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
}