website/static/src/scss/_navbar.scss

27 lines
373 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
2022-10-02 18:05:12 +01:00
.navbar-item {
2022-08-20 17:45:12 +01:00
background-color: transparent !important;
}
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);
}
}
2022-08-20 17:45:12 +01:00
nav.navbar {
@include dark-mode {
background-color: $black;
}
}