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 23:09:31 +00:00
@use '../variables';
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 {
2024-11-15 23:09:31 +00:00
background-color: variables.$color-white;
color: variables.$color-gray-90;
2021-06-14 19:01:00 +00:00
}
&.dark-theme {
2024-11-15 23:09:31 +00:00
background-color: variables.$color-gray-95;
color: variables.$color-gray-05;
2021-06-14 19:01:00 +00:00
}
}