fix(macroplan): pack grid rows to content, don't stretch to fill
All checks were successful
CI / verify (push) Successful in 1m9s

The mobile 100svh note height cascades into the grid and stretched the
auto row tracks; align-content: start keeps rows at their content height.
This commit is contained in:
Julien Calixte
2026-07-11 11:13:29 +02:00
parent a88d0dbac7
commit b720759c89

View File

@@ -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;
}