Files
Desktop/stylesheets/components/App.scss
2021-06-14 12:01:00 -07:00

13 lines
197 B
SCSS

.App {
height: 100%;
&.light-theme {
background-color: $color-white;
color: $color-gray-90;
}
&.dark-theme {
background-color: $color-gray-95;
color: $color-gray-05;
}
}