From b9513897fcfd27f66af1f592bc9f9f92112fe1ec Mon Sep 17 00:00:00 2001 From: Johngreen Date: Tue, 10 Feb 2026 17:10:53 +0900 Subject: [PATCH] fix: prevent horizontal scroll in inspection item modal by adding flex-wrap and overflow-x hidden --- dashboard/app/globals.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dashboard/app/globals.css b/dashboard/app/globals.css index 7b6371c..7568e01 100644 --- a/dashboard/app/globals.css +++ b/dashboard/app/globals.css @@ -1129,6 +1129,7 @@ a { max-width: 480px; max-height: 90vh; overflow-y: auto; + overflow-x: hidden; box-shadow: var(--md-elevation-3); animation: modal-fade-in 200ms ease-out; } @@ -1195,6 +1196,15 @@ a { gap: 20px; } +.modal-body-form .form-row { + flex-wrap: wrap; +} + +.modal-body-form .form-row > .form-field { + min-width: 0; + flex: 1 1 140px; +} + /* ===== Tab Bar ===== */ .tab-bar { display: flex;