signal-desktop/stylesheets/components/ContactSpoofingReviewDialog.scss
Fedor Indutny eb82ace2de
Conversation details changes for PNP
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2024-02-05 18:13:13 -08:00

50 lines
787 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;
}
}
&__description {
margin-block: 0 16px;
}
h2 {
@include font-body-1-bold;
margin-top: 28px;
margin-bottom: 20px;
}
hr {
border: 0;
height: 1px;
margin-block: 12px;
margin-inline: 0;
@include light-theme {
background: $color-gray-05;
}
@include dark-theme {
background: $color-gray-75;
}
}
&__buttons {
margin-top: 4px;
.module-Button:not(:last-child) {
margin-inline-end: 12px;
}
}
}