From 6129ea850859b99844076c850667ec15d1dc5e78 Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Fri, 29 May 2026 08:53:03 -0700 Subject: [PATCH] UI consistency: normalize exception-page outer gutter to .page (40px) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Low-risk tidy-up for the full-bleed "exception" pages that aren't carded. Every page already gets a 40px gutter from .page, but the exception pages were piling on inconsistent extra padding (library +20px, active-downloads +28/32px, discover/docs +0) — giving accidental 60 / 68-72 / 40 effective gutters. Drop the redundant container padding on library and active-downloads so the single .page 40px gutter is the shared, intentional outer spacing across the full-width exception pages. discover (centered max-width) and docs (sidebar layout) keep their functional layout; library's mobile padding override is unaffected. --- webui/static/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/webui/static/style.css b/webui/static/style.css index 0c397652..2603908f 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -25765,10 +25765,11 @@ body.helper-mode-active #dashboard-activity-feed:hover { =============================== */ .library-container { + /* outer gutter comes from .page (40px) — shared across the full-width + exception pages so spacing is intentional, not accidental */ height: 100%; display: flex; flex-direction: column; - padding: 20px; gap: 20px; } @@ -58153,9 +58154,10 @@ body.reduce-effects *::after { } .adl-layout { + /* outer gutter comes from .page (40px) — consistent with the other + full-width exception pages (library, etc.) */ display: flex; gap: 0; - padding: 28px 32px; max-width: 1440px; }