17 lines
289 B
SCSS
17 lines
289 B
SCSS
.Account.DialogContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $unit-2x;
|
|
width: $unit * 64;
|
|
overflow-y: hidden;
|
|
|
|
.DialogDescription {
|
|
font-size: $font-regular;
|
|
line-height: 1.24;
|
|
margin-bottom: $unit;
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|