Files
cinny/src/app/molecules/dialog/Dialog.scss
T

24 lines
326 B
SCSS
Raw Normal View History

.dialog-modal {
2021-08-16 17:34:19 +05:30
--modal-height: 656px;
2022-02-19 19:28:44 +05:30
max-height: min(100%, var(--modal-height));
display: flex;
}
.dialog,
.dialog__content,
.dialog__content__wrapper {
flex: 1;
min-height: 0;
2022-02-19 19:35:12 +05:30
min-width: 0;
2022-02-19 19:28:44 +05:30
display: flex;
2021-08-16 17:34:19 +05:30
}
.dialog {
background-color: var(--bg-surface);
&__content {
flex-direction: column;
}
}