From 4d7b7d01f645d638db70d3143626702be86cd41b Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 2 May 2026 08:31:04 +0200 Subject: [PATCH] fix(welcome): keep network strip from widening the hero grid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- src/components/WelcomeWorld.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/WelcomeWorld.vue b/src/components/WelcomeWorld.vue index a40f274..1d440d9 100644 --- a/src/components/WelcomeWorld.vue +++ b/src/components/WelcomeWorld.vue @@ -1506,6 +1506,10 @@ main { } } +.hero-ed-left { + min-width: 0; +} + .hero-ed-right { display: flex; justify-content: center;