fix: correct filtering numbers, text additions, css adaptions

Fix a lot of problems with CSS, Text and filter overview
This commit is contained in:
webfussel 2025-08-19 08:24:56 +02:00
parent 85d2ad60a2
commit fa44185781
3 changed files with 25 additions and 4 deletions

View file

@ -24,7 +24,7 @@
padding: 2rem 2rem 0;
}
h1 {
& h1 {
font-size: 3rem;
display: flex;
flex-direction: column;
@ -35,7 +35,7 @@
}
}
h2 {
& h2 {
font-size: 2rem;
font-weight: lighter;
margin-top: 2rem;
@ -67,4 +67,24 @@
font-size: 1.2rem;
margin-bottom: .5rem;
}
}
@media (width <= 500px) {
.BlogArticle {
& h1 {
font-size: 2rem;
& small {
font-size: 1.2rem;
}
}
& h2 {
font-size: 1.5rem;
}
& p {
font-size: 1rem;
}
}
}

View file

@ -10,7 +10,7 @@
<NuxtLink class="inline-flex-row gap-sm side" to="/blog">
<span class="chip"
:class="{ 'dark' : route.query.category && Object.keys(allCategoriesAndCount).includes(route.query.category as string)}">Alle {{
articles?.length
(articles?.length ?? 0) + (externalPosts?.length ?? 0)
}}</span>
</NuxtLink>
</li>