Use ASW --width-lg token for garden width instead of hardcoded selector

ASW now has body > main container rule (fixed upstream c6247ae).
Garden overrides --width-lg: 800px instead of fighting specificity.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vigilio Desto 2026-04-12 18:20:58 +02:00
parent a26fe59b40
commit 46007519ed
Signed by: Vigo
GPG key ID: 159D6AD58C8E55E9
3 changed files with 9 additions and 4937 deletions

File diff suppressed because one or more lines are too long

View file

@ -58,9 +58,10 @@ body {
font-family: var(--garden-font); font-family: var(--garden-font);
} }
/* ── Layout — contained, not a billboard ───────────────────── */ /* ── Layout — ASW handles body > main container now ────────── */
body > main, body > nav, body > footer { /* Override --width-lg for narrower garden feel */
max-width: 800px; :root {
--width-lg: 800px;
} }
/* ── Links — violet accent, indigo hover ──────────────────── */ /* ── Links — violet accent, indigo hover ──────────────────── */

View file

@ -58,9 +58,10 @@ body {
font-family: var(--garden-font); font-family: var(--garden-font);
} }
/* ── Layout — contained, not a billboard ───────────────────── */ /* ── Layout — ASW handles body > main container now ────────── */
body > main, body > nav, body > footer { /* Override --width-lg for narrower garden feel */
max-width: 800px; :root {
--width-lg: 800px;
} }
/* ── Links — violet accent, indigo hover ──────────────────── */ /* ── Links — violet accent, indigo hover ──────────────────── */