From b720759c89fad78e41f09f44b4dd133068f8fa01 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 11 Jul 2026 11:13:29 +0200 Subject: [PATCH] fix(macroplan): pack grid rows to content, don't stretch to fill The mobile 100svh note height cascades into the grid and stretched the auto row tracks; align-content: start keeps rows at their content height. --- src/modules/macroplan/components/MacroplanGrid.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/modules/macroplan/components/MacroplanGrid.vue b/src/modules/macroplan/components/MacroplanGrid.vue index bd8af91..66aa2dc 100644 --- a/src/modules/macroplan/components/MacroplanGrid.vue +++ b/src/modules/macroplan/components/MacroplanGrid.vue @@ -232,6 +232,10 @@ const bandStyle = computed(() => ({ display: grid; width: max-content; min-width: 100%; + /* Never let a too-tall container (e.g. the mobile 100svh note height that + cascades in) stretch the auto row tracks — pack rows to their content + height at the top. */ + align-content: start; font-variant-ligatures: none; }