signal-desktop/stylesheets/components/App.scss

21 lines
368 B
SCSS
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2021-06-14 19:01:00 +00:00
.App {
height: 100%;
position: relative;
2021-06-14 19:01:00 +00:00
// TitleBar support
display: flex;
flex-direction: column;
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;
}
}