DEV: allow optional modal height vars to be set (#29315)
This commit is contained in:
parent
88449541a5
commit
4cb46ecb0f
|
@ -5,6 +5,9 @@
|
|||
&__container {
|
||||
max-width: var(--modal-max-width);
|
||||
min-width: var(--modal-min-width);
|
||||
// height values add optional theme utility
|
||||
max-height: var(--modal-max-height);
|
||||
min-height: var(--modal-min-height);
|
||||
.d-modal.-large & {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue