From 36b77e3f0a21444d9e08b98573e8f3525827357e Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Tue, 8 Sep 2026 23:57:09 +0000 Subject: [PATCH] Extend welcome dashboard background to the panel edges The drifting orb glow was clipped to the centered 1040px column, leaving visible walls where it met the content padding. Make the welcome section full-bleed instead: cancel the content-area padding with negative margins and stretch it to all four panel edges (sidebar border, topbar, viewport right edge, bottom). The heading, cards, and Browse button keep their centered 1040px column via .welcome-inner. --- app/sovran_systemsos_web/static/css/layout.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/app/sovran_systemsos_web/static/css/layout.css b/app/sovran_systemsos_web/static/css/layout.css index 6e3596d..c401fc6 100644 --- a/app/sovran_systemsos_web/static/css/layout.css +++ b/app/sovran_systemsos_web/static/css/layout.css @@ -208,11 +208,12 @@ .welcome { position: relative; - max-width: 1040px; - margin: 0 auto; - padding: 44px 8px 24px; + /* Full-bleed: cancel .content's padding so the glow reaches + every edge of the panel (sidebar border, topbar, viewport). */ + margin: -26px -30px -70px; + padding: 70px 38px 70px; overflow: hidden; - min-height: 100%; + min-height: calc(100% + 96px); } /* Soft drifting glow — calm, GPU-cheap (transforms only) */ @@ -260,6 +261,8 @@ .welcome-inner { position: relative; + max-width: 1040px; + margin: 0 auto; animation: welcome-in 0.5s ease both; }