website/static/src/scss/_navbar.scss

17 lines
238 B
SCSS
Raw Normal View History

.navbar-item.home-link,
.navbar-item.navbar-icon {
color: $grey-lighter;
2022-07-04 20:40:50 +01:00
2022-06-12 17:21:46 +01:00
&:hover {
color: $white;
2022-06-12 17:21:46 +01:00
}
}
2022-08-20 15:31:14 +01:00
#dark-mode-toggle i {
2022-08-20 15:55:50 +01:00
transition: transform 0.5s !important;
2022-08-20 15:31:14 +01:00
@include dark-mode {
transform: rotate(180deg);
}
}