fix(macroplan): pack grid rows to content, don't stretch to fill
All checks were successful
CI / verify (push) Successful in 1m9s
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user