feat(FN-5281): add tablet board overflow handling and regression tests

Adds a tablet board override to fix overflow regressions on the dashboard, with a corresponding test covering the regression path and a hardening fix to the parsing logic.

Fusion-Task-Id: FN-5281
This commit is contained in:
Fusion (runfusion.ai)
2026-05-19 23:17:11 -07:00
committed by gsxdsm
parent 00af264707
commit 61ef09c79c
2 changed files with 56 additions and 1 deletions

View File

@@ -3465,7 +3465,11 @@ input[type="range"]:focus-visible {
/* Cross-cutting tablet rules only. Component-specific tablet overrides
live in co-located @media blocks in app/components/. */
@media (min-width: 769px) and (max-width: 1024px) {
/* (no cross-cutting tablet rules at present) */
.board {
grid-template-columns: repeat(6, minmax(0, 1fr));
overflow-x: hidden;
overflow-y: hidden;
}
}
/* === Badge Base === */