fix: prevent horizontal scroll in inspection item modal by adding flex-wrap and overflow-x hidden
All checks were successful
Deploy to Production / deploy (push) Successful in 1m4s

This commit is contained in:
Johngreen
2026-02-10 17:10:53 +09:00
parent b9e97cc9c8
commit b9513897fc

View File

@@ -1129,6 +1129,7 @@ a {
max-width: 480px; max-width: 480px;
max-height: 90vh; max-height: 90vh;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden;
box-shadow: var(--md-elevation-3); box-shadow: var(--md-elevation-3);
animation: modal-fade-in 200ms ease-out; animation: modal-fade-in 200ms ease-out;
} }
@@ -1195,6 +1196,15 @@ a {
gap: 20px; 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 ===== */
.tab-bar { .tab-bar {
display: flex; display: flex;