2021-08-16 14:04:19 +02:00
|
|
|
.dialog-model {
|
|
|
|
--modal-height: 656px;
|
2022-02-19 14:58:44 +01:00
|
|
|
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 14:04:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.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);
|
|
|
|
}
|