From c0f6ba2651b6c44877bfb2eec0748c79635d14e9 Mon Sep 17 00:00:00 2001 From: Matt Edholm Date: Fri, 15 May 2026 15:51:18 -0400 Subject: [PATCH] fix(design-v2): make body bg transparent so harbor pseudo shows through body had opaque background: var(--color-bg) which sat at z-index 0 and covered the body::before harbor at z-index -3. Switched body to transparent and put the fallback color on html instead. Co-Authored-By: Claude Opus 4.7 (1M context) --- public/css/wevisto-design.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/css/wevisto-design.css b/public/css/wevisto-design.css index 71c55de..dbbd562 100644 --- a/public/css/wevisto-design.css +++ b/public/css/wevisto-design.css @@ -98,10 +98,14 @@ */ [data-design="v2"] body { color: var(--color-text); - background: var(--color-bg); + background: transparent; position: relative; min-height: 100dvh; } +[data-design="v2"] html { + /* Below body's pseudo-elements; shows through if anything has alpha */ + background: var(--color-bg); +} [data-design="v2"] body::before { content: ''; position: fixed;