signal-desktop/stylesheets/components/PermissionsPopup.scss

36 lines
599 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
.PermissionsPopup {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
padding: 16px;
@include light-theme() {
background: $color-white;
color: $color-gray-90;
}
@include dark-theme() {
background: $color-gray-95;
color: $color-gray-05;
}
&__body {
@include font-body-1;
}
&__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
}
}
}