signal-desktop/stylesheets/components/ContactSpoofingReviewDialog.scss

54 lines
909 B
SCSS
Raw Normal View History

// 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-04-21 16:31:12 +00:00
.module-ContactSpoofingReviewDialog {
user-select: none;
p {
2024-11-15 23:09:31 +00:00
@include mixins.font-body-2;
2021-04-21 16:31:12 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
color: variables.$color-gray-60;
2021-04-21 16:31:12 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
color: variables.$color-gray-05;
2021-04-21 16:31:12 +00:00
}
}
&__description {
margin-block: 0 16px;
}
2021-04-21 16:31:12 +00:00
h2 {
2024-11-15 23:09:31 +00:00
@include mixins.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: 12px;
2023-04-20 17:03:43 +00:00
margin-inline: 0;
2021-04-21 16:31:12 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
background: variables.$color-gray-05;
2021-04-21 16:31:12 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
background: variables.$color-gray-75;
2021-04-21 16:31:12 +00:00
}
}
&__buttons {
margin-top: 4px;
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
}
}
}