signal-desktop/sticker-creator/app/index.scss
2019-12-17 12:28:46 -08:00

16 lines
306 B
SCSS

@import '../mixins';
@import '../../stylesheets/variables';
.container {
display: grid;
height: 100vh;
grid-template-rows: 47px calc(100vh - 47px - 68px) 68px;
@include light-theme() {
background-color: $color-white;
}
@include dark-theme() {
background-color: $color-gray-90;
}
}