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:
parent
1819bee43c
commit
c015f62764
1 changed files with 6 additions and 4 deletions
|
|
@ -11,10 +11,12 @@
|
||||||
elsewhere. */
|
elsewhere. */
|
||||||
|
|
||||||
body.dashboard-shell {
|
body.dashboard-shell {
|
||||||
/* Width is generous so the container tree + agent cards aren't
|
/* Full-width layout (#416 — mara: drop the 90em cap so wide screens
|
||||||
boxed too narrow — agent state pills want room. */
|
don't waste real estate on empty side margins). `padding: 0 1.5em
|
||||||
max-width: 90em;
|
1.5em` keeps a small gutter on the left/right so cards don't kiss
|
||||||
margin: 0 auto;
|
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;
|
padding: 0 1.5em 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue