You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/client/scss/layout/_header.scss

24 lines
292 B

h2.nav-item {
font-size: 150%;
color: $orange;
}
#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;
}
}