14 lines
226 B
SCSS
14 lines
226 B
SCSS
.header {
|
|
position: fixed;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: $header-height;
|
|
background-color: $white;
|
|
z-index: 10;
|
|
|
|
@media (min-width: 48rem) {
|
|
height: $header-height-desktop;
|
|
}
|
|
}
|