discourse-custom-header-links/common/common.scss

38 lines
552 B
SCSS
Raw Normal View History

2018-12-08 00:17:52 -05:00
.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;
}
2018-06-24 02:55:11 -04:00
}
}
2018-06-24 02:55:11 -04:00
.desktop-view .vmo,
.mobile-view .vdo {
2018-12-08 00:17:52 -05:00
display: none !important;
2018-06-24 02:55:11 -04:00
}
@if $links_position == left {
.custom-header-links {
margin-left: 1em;
}
.hide-menus {
.custom-header-links {
display: none;
}
}
}