fix(SW-1107): Fixed issue where current header was positioned on top of the alert

This commit is contained in:
Erik Tiekstra
2024-12-03 09:31:57 +01:00
parent 2660faf4ac
commit e894192f96
2 changed files with 4 additions and 5 deletions

View File

@@ -5,8 +5,10 @@
z-index: var(--header-z-index);
}
@media screen and (max-width: 1366px) {
@media screen and (max-width: 950px) {
.header {
height: var(--current-mobile-site-header-height);
position: sticky;
top: 0;
z-index: var(--header-z-index);
}
}