Fix mobile header overlap and thumbnail crop ratio

The language switch overlapped the centered logo on narrow viewports
(~390px), and article card covers used an overly aggressive 4:5 crop
that sliced through text baked into cover images.
This commit is contained in:
2026-09-14 14:28:34 +02:00
parent bd920627fa
commit 728e931421
3 changed files with 27 additions and 4 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ const href = computed(() => localePath(props.locale, `/blog/${props.article.slug
.cover {
width: 100%;
aspect-ratio: 4 / 5;
aspect-ratio: 3 / 2;
object-fit: cover;
background: var(--color-surface);
transition: transform 0.4s ease;