signal-desktop/stylesheets/components/PermissionsPopup.scss

39 lines
700 B
SCSS
Raw Normal View History

2021-09-17 22:24:21 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
@use '../variables';
2021-09-17 22:24:21 +00:00
.PermissionsPopup {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
padding: 16px;
2024-11-15 23:09:31 +00:00
@include mixins.light-theme() {
background: variables.$color-white;
color: variables.$color-gray-90;
2021-09-17 22:24:21 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme() {
background: variables.$color-gray-95;
color: variables.$color-gray-05;
2021-09-17 22:24:21 +00:00
}
&__body {
2024-11-15 23:09:31 +00:00
@include mixins.font-body-1;
2021-09-17 22:24:21 +00:00
}
&__buttons {
display: flex;
justify-content: flex-end;
margin-top: 12px;
width: 100%;
button {
2023-04-20 17:03:43 +00:00
margin-inline-start: 16px;
2021-09-17 22:24:21 +00:00
}
}
}