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
This commit is contained in:
Gigi
2025-10-08 11:04:44 +01:00
parent 4edc22cec2
commit 1df3962064

View File

@@ -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,