Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Header/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ const primaryLink = isEnterpriseSection
height: var(--theme-navbar-height);
z-index: 11;
padding: 0.75rem 0;
background-color: color-mix(in srgb, var(--theme-navbar-bg) 95%, transparent);
backdrop-filter: blur(5px);
background-color: var(--theme-navbar-bg);
border-bottom: 1px solid var(--theme-divider);
display: flex;
align-items: center;
justify-content: left;
Expand Down
6 changes: 4 additions & 2 deletions src/styles/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,10 @@
--theme-code-del-border: hsl(338, 46%, 53%);
--theme-code-del-text: hsl(338, 36%, 70%);

/* Navbar */
--theme-navbar-bg: var(--theme-bg);
/* Navbar — content surface (white in light) so it reads as a distinct
elevated zone over the body bg. Dark mode aliases --theme-bg-content
to --theme-bg, so this is unchanged from the previous behaviour there. */
--theme-navbar-bg: var(--theme-bg-content);

/* Glow */
--theme-glow-highlight: transparent;
Expand Down
Loading