mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-26 03:18:17 +01:00
17 lines
306 B
SCSS
17 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;
|
|
}
|
|
}
|