signal-desktop/stylesheets/components/ContactSpoofingReviewDialog.scss

51 lines
783 B
SCSS
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2021-04-21 16:31:12 +00:00
.module-ContactSpoofingReviewDialog {
user-select: none;
p {
@include font-body-2;
@include light-theme {
color: $color-gray-60;
}
@include dark-theme {
color: $color-gray-05;
}
}
&__description {
margin-top: 4px;
}
2021-04-21 16:31:12 +00:00
h2 {
@include font-body-1-bold;
margin-top: 28px;
margin-bottom: 20px;
2021-04-21 16:31:12 +00:00
}
hr {
border: 0;
height: 1px;
margin-block: 20px;
2023-04-20 17:03:43 +00:00
margin-inline: 0;
2021-04-21 16:31:12 +00:00
@include light-theme {
background: $color-gray-05;
}
@include dark-theme {
background: $color-gray-90;
}
}
&__buttons {
margin-top: 12px;
2021-04-21 16:31:12 +00:00
.module-Button:not(:last-child) {
2023-04-20 17:03:43 +00:00
margin-inline-end: 12px;
2021-04-21 16:31:12 +00:00
}
}
}