fix stylelint

This commit is contained in:
ogerly 2022-11-02 14:37:46 +01:00
parent c12b9af504
commit c9fc3e61f5
2 changed files with 7 additions and 7 deletions

View File

@ -4,8 +4,8 @@ $mode-toggle-bg: #262626;
// _dark-mode.scss
#app {
&.dark-mode {
background-color: black;
color: #fff;
background-color: black;
color: #fff;
}
}
@ -13,7 +13,7 @@ $mode-toggle-bg: #262626;
.navbar-light,
.navbar-nav,
.nav-link {
&.dark-mode {
color: #a7ffa9;
}
}
&.dark-mode {
color: #a7ffa9;
}
}

View File

@ -2,7 +2,7 @@ html,
body {
background-color: #fff;
height: 100%;
transition: background-color .5s ease, color .5s ease;
transition: background-color 0.5s ease, color 0.5s ease;
}
.pointer {