From dd263dfbaf42921a712460ad102a9b0d4d0fd7fd Mon Sep 17 00:00:00 2001 From: "Itarun Pitimon[xOps]" Date: Sat, 14 Feb 2026 23:26:38 +0700 Subject: [PATCH] fix: modal CSS padding and width fixes (#7) - Change .form-actions padding-top to full padding for consistent spacing - Increase .modal-lg max-width from 520px to 540px for better content fit - Normalize .modal-tabs padding to uniform 0.75rem --- src/web/public/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/web/public/styles.css b/src/web/public/styles.css index 37b285c..2a1c88c 100644 --- a/src/web/public/styles.css +++ b/src/web/public/styles.css @@ -2702,7 +2702,7 @@ body { justify-content: flex-end; gap: 0.5rem; margin-top: 1rem; - padding-top: 0.75rem; + padding: 0.75rem; border-top: 1px solid var(--border); } @@ -2763,7 +2763,7 @@ body { } .modal-content.modal-lg { - max-width: 520px; + max-width: 540px; max-height: 85vh; display: flex; flex-direction: column; @@ -3474,7 +3474,7 @@ body { .modal-tabs { display: flex; gap: 0.5rem; - padding: 0 1rem 0.75rem 1rem; + padding: 0.75rem; border-bottom: 1px solid var(--border); }