13 lines
242 B
CSS
13 lines
242 B
CSS
.header {
|
|
display: grid;
|
|
background-color: var(--Main-Grey-White);
|
|
position: relative;
|
|
z-index: var(--header-z-index);
|
|
}
|
|
|
|
@media screen and (max-width: 1366px) {
|
|
.header {
|
|
height: var(--current-mobile-site-header-height);
|
|
}
|
|
}
|