3f6e3074f2
Signed-off-by: Ajay Bura <ajbura@gmail.com>
23 lines
326 B
SCSS
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;
|
|
}
|
|
}
|