41 lines
576 B
SCSS
41 lines
576 B
SCSS
|
.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: 16px 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-right: 12px;
|
||
|
}
|
||
|
}
|
||
|
}
|