13 lines
219 B
SCSS
13 lines
219 B
SCSS
.App {
|
|
height: 100%;
|
|
position: relative;
|
|
|
|
&.light-theme {
|
|
background-color: $color-white;
|
|
color: $color-gray-90;
|
|
}
|
|
&.dark-theme {
|
|
background-color: $color-gray-95;
|
|
color: $color-gray-05;
|
|
}
|
|
}
|