32 lines
488 B
SCSS
32 lines
488 B
SCSS
.module-ContactSpoofingReviewDialogPerson {
|
|
display: flex;
|
|
|
|
&:is(button) {
|
|
@include button-reset;
|
|
}
|
|
|
|
&__info {
|
|
margin-left: 12px;
|
|
|
|
&__contact-name {
|
|
@include font-body-1;
|
|
}
|
|
|
|
&__property {
|
|
@include font-body-2;
|
|
|
|
@include light-theme {
|
|
color: $color-gray-60;
|
|
}
|
|
|
|
@include dark-theme {
|
|
color: $color-gray-05;
|
|
}
|
|
|
|
&--callout {
|
|
@include font-body-2-italic;
|
|
margin: 12px 0;
|
|
}
|
|
}
|
|
}
|
|
}
|