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

27 lines
420 B
SCSS
Raw Normal View History

2021-08-16 17:34:19 +05:30
.dialog-model {
--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;
display: flex;
2021-08-16 17:34:19 +05:30
}
.dialog {
background-color: var(--bg-surface);
&__content {
flex-direction: column;
}
}
.dialog__content-container {
padding-top: var(--sp-extra-tight);
padding-bottom: var(--sp-extra-loose);
}