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) <noreply@anthropic.com>
This commit is contained in:
2026-07-22 11:54:53 +02:00
co-authored by Claude Opus 4.8
parent 985ff0755d
commit 770bbc3887
+1 -1
View File
@@ -8,7 +8,7 @@ $wg-topbar-panel-bg: rgba(21, 17, 26, 0.98);
top: 0; top: 0;
z-index: 1020; z-index: 1020;
color: var(--wg-text-soft); 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); border-bottom: 1px solid rgba(194, 163, 90, 0.2);
box-shadow: box-shadow:
inset 0 1px 0 rgba(255, 244, 221, 0.04), inset 0 1px 0 rgba(255, 244, 221, 0.04),