27 lines
394 B
SCSS
27 lines
394 B
SCSS
@import "common/foundation/variables";
|
|
|
|
.headerLink {
|
|
list-style: none;
|
|
a {
|
|
padding: 6px 10px;
|
|
color: $header_primary;
|
|
font-size: $font-up-1;
|
|
}
|
|
}
|
|
|
|
.d-header {
|
|
&.hide-menus {
|
|
.headerLink:not(.keep) {
|
|
display: none;
|
|
}
|
|
}
|
|
.header-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
.desktop-view .vmo,
|
|
.mobile-view .vdo {
|
|
display: none !important;
|
|
}
|