diff --git a/.commitmessage b/.commitmessage index 844d1c1..8c73766 100644 --- a/.commitmessage +++ b/.commitmessage @@ -1,4 +1,4 @@ -feat: add mobile slot configuration +fix: prevent mobile slot field overlap -Replace the mobile table with a searchable card editor while retaining the -desktop table. Add a mobile-friendly date picker layout and sticky save action. +Stack weekday and date controls on narrow screens and constrain native select +widths to their grid column. diff --git a/src/components/MobileConfigList.css b/src/components/MobileConfigList.css index 86b901d..9d3f1cf 100644 --- a/src/components/MobileConfigList.css +++ b/src/components/MobileConfigList.css @@ -146,6 +146,7 @@ .mobile-config-card__core-fields select, .mobile-config-card__range { box-sizing: border-box; + width: 100%; min-height: 2.6rem; border: 1px solid #cbd5e1; border-radius: 5px; @@ -251,6 +252,12 @@ font-weight: 600; } + @media (max-width: 420px) { + .mobile-config-card__core-fields { + grid-template-columns: 1fr; + } + } + .desktop-config-table, .desktop-config-actions { display: none;