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.
32 lines
437 B
32 lines
437 B
|
|
|
|
@import "./var.scss";
|
|
@import "./common.scss";
|
|
|
|
html{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
.light{
|
|
background-color: $light-sidenav-bg;
|
|
color: $light-sidenav-color;
|
|
transition: background-color .3s linear;
|
|
}
|
|
|
|
.dark{
|
|
background-color: $dark-sidenav-bg;
|
|
color: $dark-sidenav-color;
|
|
transition: background-color .3s linear;
|
|
}
|
|
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|