fix(website): mobile menu causing issues with scroll anchoring

This commit is contained in:
Elian Doran 2025-09-27 17:39:40 +03:00
parent 894ec1e3c1
commit d23550d3ef
No known key found for this signature in database

View File

@ -56,6 +56,23 @@ header nav a.active {
}
@media (max-width: 719px) {
:root {
--header-height: 35px;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
min-height: var(--header-height);
display: flex;
}
header + main {
margin-top: var(--header-height);
}
header .content-wrapper {
display: block;
}