24 lines
326 B
SCSS
24 lines
326 B
SCSS
.dialog-modal {
|
|
--modal-height: 656px;
|
|
max-height: min(100%, var(--modal-height));
|
|
display: flex;
|
|
}
|
|
|
|
.dialog,
|
|
.dialog__content,
|
|
.dialog__content__wrapper {
|
|
flex: 1;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
|
|
display: flex;
|
|
}
|
|
|
|
.dialog {
|
|
background-color: var(--bg-surface);
|
|
|
|
&__content {
|
|
flex-direction: column;
|
|
}
|
|
}
|