fix: restore responsive dashboard panel grid

This commit is contained in:
Dobromir Popov
2026-07-14 15:55:24 +02:00
parent 1e64a5b2b9
commit 348b003d6e
2 changed files with 10 additions and 3 deletions

View File

@@ -39,8 +39,9 @@ def test_dashboard_served_with_all_panels():
assert "resolveModelGroup" in html
assert "buildModelAliasMap" in html
assert "modelAliasKey(raw)" in html
assert "main { display:grid; grid-template-columns:1fr;" in html
assert "main > section { grid-column:1 / -1; width:100%; min-width:0; }" in html
assert "@media (min-width:900px)" in html
assert "grid-template-columns:repeat(4,minmax(0,1fr));" in html
assert ".wide { grid-column:span 2; }" in html
assert 'onclick="clearConsole()"' in html
assert "let consoleClearedAt = 0;" in html
finally: