signal-desktop/stylesheets/components/App.scss

23 lines
430 B
SCSS
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 16:35:20 -08:00
@use '../variables';
2021-06-14 15:01:00 -04:00
.App {
height: 100%;
position: relative;
2021-06-14 15:01:00 -04:00
// TitleBar support
display: flex;
flex-direction: column;
2021-06-14 15:01:00 -04:00
&.light-theme {
2024-11-15 16:35:20 -08:00
background-color: variables.$color-white;
color: variables.$color-gray-90;
2021-06-14 15:01:00 -04:00
}
&.dark-theme {
2024-11-15 16:35:20 -08:00
background-color: variables.$color-gray-95;
color: variables.$color-gray-05;
2021-06-14 15:01:00 -04:00
}
}