28 lines
458 B
SCSS
28 lines
458 B
SCSS
.Account.DialogContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
width: $unit * 64;
|
|
overflow-y: hidden;
|
|
|
|
.Fields {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
padding: 0 $unit-4x;
|
|
|
|
@include breakpoint(phone) {
|
|
gap: $unit-4x;
|
|
}
|
|
}
|
|
|
|
.DialogDescription {
|
|
font-size: $font-regular;
|
|
line-height: 1.24;
|
|
margin-bottom: $unit;
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|