fix(welcome): keep network strip from widening the hero grid

Grid items default to min-width: auto, so the 5×220px scroll strip
forced the 1.2fr column to its intrinsic width and pushed the right
column out. min-width: 0 lets the track shrink and overflow-x scroll.
This commit is contained in:
Julien Calixte
2026-05-02 08:31:04 +02:00
parent c78ce38845
commit 4d7b7d01f6

View File

@@ -1506,6 +1506,10 @@ main {
} }
} }
.hero-ed-left {
min-width: 0;
}
.hero-ed-right { .hero-ed-right {
display: flex; display: flex;
justify-content: center; justify-content: center;