44 lines
690 B
SCSS
44 lines
690 B
SCSS
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.module-ContactSpoofingReviewDialog {
|
|
user-select: none;
|
|
|
|
p {
|
|
@include font-body-2;
|
|
|
|
@include light-theme {
|
|
color: $color-gray-60;
|
|
}
|
|
|
|
@include dark-theme {
|
|
color: $color-gray-05;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
@include font-body-1-bold;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
height: 1px;
|
|
margin-block: 16px;
|
|
margin-inline: 0;
|
|
|
|
@include light-theme {
|
|
background: $color-gray-05;
|
|
}
|
|
@include dark-theme {
|
|
background: $color-gray-90;
|
|
}
|
|
}
|
|
|
|
&__buttons {
|
|
margin-top: 8px;
|
|
|
|
.module-Button:not(:last-child) {
|
|
margin-inline-end: 12px;
|
|
}
|
|
}
|
|
}
|