From 7a4ab2279d30138c0494f4e4d26dd6266ddad348 Mon Sep 17 00:00:00 2001 From: Frederico Castro Date: Sat, 28 Feb 2026 02:13:27 -0300 Subject: [PATCH] =?UTF-8?q?Corrigir=20classes=20CSS=20dos=20modais=20para?= =?UTF-8?q?=20conven=C3=A7=C3=A3o=20BEM=20(modal--lg)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/styles.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/public/css/styles.css b/public/css/styles.css index 90442db..3f9c242 100644 --- a/public/css/styles.css +++ b/public/css/styles.css @@ -966,15 +966,22 @@ textarea { transform: scale(1) translateY(0); } -.modal-sm { +.modal-sm, +.modal--sm { max-width: 400px; } -.modal-lg { +.modal--md { + max-width: 700px; +} + +.modal-lg, +.modal--lg { max-width: 800px; } -.modal-xl { +.modal-xl, +.modal--xl { max-width: 1000px; }