DEV: allow optional modal height vars to be set (#29315)

This commit is contained in:
Kris 2024-10-21 14:00:28 -04:00 committed by GitHub
parent 88449541a5
commit 4cb46ecb0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -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;
}