From 770bbc388779168878099d0d3fe0895718394e04 Mon Sep 17 00:00:00 2001 From: vickydotbat Date: Wed, 22 Jul 2026 11:54:53 +0200 Subject: [PATCH] fix(topbar): make topbar fully opaque The topbar background used rgba(24, 20, 29, 0.98), letting page content faintly bleed through. Set it to a solid rgb(24, 20, 29). Co-Authored-By: Claude Opus 4.8 (1M context) --- scss/westgate/_topbar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/westgate/_topbar.scss b/scss/westgate/_topbar.scss index fead2c1..ff33ead 100644 --- a/scss/westgate/_topbar.scss +++ b/scss/westgate/_topbar.scss @@ -8,7 +8,7 @@ $wg-topbar-panel-bg: rgba(21, 17, 26, 0.98); top: 0; z-index: 1020; color: var(--wg-text-soft); - background: rgba(24, 20, 29, 0.98); + background: rgb(24, 20, 29); border-bottom: 1px solid rgba(194, 163, 90, 0.2); box-shadow: inset 0 1px 0 rgba(255, 244, 221, 0.04), -- 2.54.0