dashboard: drop max-width cap, full-width layout (#416)

Mara: remove the 90em max-width so the dashboard fills wide
screens instead of boxing content into a centred column with
empty margins. `padding: 0 1.5em 1.5em` stays as the small
edge-of-viewport gutter; `.dashboard-chrome { margin: 0 -1.5em
... }` continues to pull the sticky chrome bar edge-to-edge
through that gutter.
This commit is contained in:
iris 2026-05-25 20:59:25 +02:00
commit c015f62764

View file

@ -11,10 +11,12 @@
elsewhere. */
body.dashboard-shell {
/* Width is generous so the container tree + agent cards aren't
boxed too narrow agent state pills want room. */
max-width: 90em;
margin: 0 auto;
/* Full-width layout (#416 mara: drop the 90em cap so wide screens
don't waste real estate on empty side margins). `padding: 0 1.5em
1.5em` keeps a small gutter on the left/right so cards don't kiss
the viewport edge; `.dashboard-chrome { margin: 0 -1.5em ... }`
still pulls the chrome bar edge-to-edge through that gutter. */
margin: 0;
padding: 0 1.5em 1.5em;
}