Fix navbar sticky background to remain transparent

When the page is scrolled and .header-sticky.active is applied,
change background from var(--primary-color) to transparent so
the hero background image remains visible.
This commit is contained in:
2026-03-17 14:25:43 -05:00
parent f0e275a24f
commit 7ac7e472a5

View File

@@ -669,7 +669,7 @@ header.main-header .header-sticky.active{
right: 0;
border-radius: 0;
transform: translateY(0);
background: var(--primary-color);
background: transparent;
border-bottom: 1px solid var(--divider-color);
backdrop-filter: blur(30px);
}