38 lines
552 B
SCSS
38 lines
552 B
SCSS
.d-header {
|
|
&.hide-menus {
|
|
.headerLink:not(.keep) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.custom-header-links {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin: 0;
|
|
.headerLink {
|
|
list-style: none;
|
|
a {
|
|
padding: 6px 10px;
|
|
color: var(--header_primary);
|
|
font-size: $font-up-1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.desktop-view .vmo,
|
|
.mobile-view .vdo {
|
|
display: none !important;
|
|
}
|
|
|
|
@if $links_position == left {
|
|
.custom-header-links {
|
|
margin-left: 1em;
|
|
}
|
|
.hide-menus {
|
|
.custom-header-links {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|