fix(topbar): make topbar fully opaque (#38)
The `.wg-topbar` background used `rgba(24, 20, 29, 0.98)`, letting page content faintly bleed through the header. Set it to a solid `rgb(24, 20, 29)` so the bar is fully opaque. Left `$wg-topbar-panel-bg` (dropdown/drawer panels, still `0.98`) untouched — those are popovers, not the bar itself. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: #38 Reviewed-by: xtul <mpiasecki720@protonmail.com> Co-authored-by: vickydotbat <vickydotbat@tutamail.com> Co-committed-by: vickydotbat <vickydotbat@tutamail.com>
This commit was merged in pull request #38.
This commit is contained in:
@@ -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),
|
||||||
|
|||||||
Reference in New Issue
Block a user