signal-desktop/stylesheets/components/App.scss

14 lines
219 B
SCSS
Raw Normal View History

2021-06-14 19:01:00 +00:00
.App {
height: 100%;
position: relative;
2021-06-14 19:01:00 +00:00
&.light-theme {
background-color: $color-white;
color: $color-gray-90;
}
&.dark-theme {
background-color: $color-gray-95;
color: $color-gray-05;
}
}