fix: solid navbar background on scroll (closes #68)
Some checks failed
Lint / PHP Syntax Check (push) Has been cancelled
Lint / CSS Lint (stylelint) (push) Has been cancelled
Lint / HTML Lint (htmlhint) (push) Has been cancelled

This commit is contained in:
2026-06-02 23:50:54 +02:00
parent 1a72210608
commit ad4284733c

View File

@@ -94,10 +94,11 @@ nav {
} }
nav.scrolled { nav.scrolled {
background: rgb(253 252 250 / 96%); background: var(--white);
backdrop-filter: blur(12px); backdrop-filter: none;
padding: 0.85rem 3rem; padding: 0.85rem 3rem;
border-bottom: 1px solid rgb(158 148 133 / 20%); border-bottom: 1px solid var(--warm);
box-shadow: 0 1px 8px rgb(0 0 0 / 6%);
} }
.nav-logo { .nav-logo {