Files
cinny/src/app/molecules/dialog/Dialog.scss
2022-04-24 17:29:49 +05:30

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;
}
}