wikijs-fork/client/scss/layout/_header.scss

28 lines
318 B
SCSS
Raw Normal View History

2016-08-28 01:46:10 +00:00
#header {
z-index: 5;
}
2016-08-28 01:46:10 +00:00
h2.nav-item {
font-size: 150%;
color: $orange;
2016-08-28 15:27:05 +00:00
}
#notifload {
width: 42px;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity .5s ease;
&::before {
content: " ";
@include spinner($orange,0.5s,24px);
}
&.active {
opacity: 1;
}
2016-08-28 01:46:10 +00:00
}