26 lines
373 B
SCSS
26 lines
373 B
SCSS
.navbar-item.home-link,
|
|
.navbar-item.navbar-icon {
|
|
color: $grey-lighter;
|
|
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
.navbar-item {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
#dark-mode-toggle i {
|
|
transition: transform 0.5s !important;
|
|
|
|
@include dark-mode {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|
|
nav.navbar {
|
|
@include dark-mode {
|
|
background-color: $black;
|
|
}
|
|
}
|