Corrigir classes CSS dos modais para convenção BEM (modal--lg)

This commit is contained in:
Frederico Castro
2026-02-28 02:13:27 -03:00
parent 7cbfcb2d0d
commit 7a4ab2279d

View File

@@ -966,15 +966,22 @@ textarea {
transform: scale(1) translateY(0); transform: scale(1) translateY(0);
} }
.modal-sm { .modal-sm,
.modal--sm {
max-width: 400px; max-width: 400px;
} }
.modal-lg { .modal--md {
max-width: 700px;
}
.modal-lg,
.modal--lg {
max-width: 800px; max-width: 800px;
} }
.modal-xl { .modal-xl,
.modal--xl {
max-width: 1000px; max-width: 1000px;
} }