From 1df3962064ebe673b86a48a9d5e55e07de11730f Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 8 Oct 2025 11:04:44 +0100 Subject: [PATCH] fix: improve modal spacing with proper box-sizing - Add box-sizing: border-box to modal-content - Add box-sizing: border-box to form inputs and textareas - Ensures padding is included in width calculation - Fixes right margin and prevents content from touching edges --- src/index.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.css b/src/index.css index 43c5ced0..d099a67a 100644 --- a/src/index.css +++ b/src/index.css @@ -2218,6 +2218,7 @@ body { max-height: 90vh; overflow-y: auto; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); + box-sizing: border-box; } .modal-header { @@ -2272,6 +2273,7 @@ body { font-size: 1rem; font-family: inherit; transition: border-color 0.2s; + box-sizing: border-box; } .form-group input:focus,