cinny/src/app/molecules/dialog/Dialog.scss
Ajay Bura 3f6e3074f2
Add reusable dialog (#459)
Signed-off-by: Ajay Bura <ajbura@gmail.com>
2022-03-31 20:39:05 +05:30

23 lines
326 B
SCSS

.dialog-model {
--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;
}
}