mirror of
https://github.com/discourse/discourse-custom-header-links.git
synced 2025-02-10 21:44:47 +00:00
31 lines
500 B
SCSS
31 lines
500 B
SCSS
@import "common/foundation/variables";
|
|
|
|
.headerLink {
|
|
float: left;
|
|
margin-right: 5px;
|
|
list-style: none;
|
|
-webkit-animation: fadein 0.7s;
|
|
animation: fadein 0.7s;
|
|
|
|
a {
|
|
border: none;
|
|
padding: 6px 12px;
|
|
color: $primary;
|
|
font-size: $font-up-1;
|
|
line-height: $line-height-medium;
|
|
}
|
|
}
|
|
|
|
.d-header {
|
|
.header-buttons,
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.desktop-view .vmo,
|
|
.mobile-view .vdo {
|
|
display: none !important
|
|
}
|