You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(mobile): make the work-item edit modal a usable full-screen sheet on phones (#85)
Tapping a card in list view opened WorkItemDetailsModal, which on a phone was a
cramped centered card with a fixed two-column body — and (because it rendered
inside the z-20 main-wrapper while the bottom nav/top bar are z-30) the nav and
project selector painted ON TOP of it. It didn't fit and looked broken.
- Portal the modal to document.body so it escapes the page stacking context and
actually covers everything (matches the other dialogs here).
- Phones: full-screen sheet (w/h-full, no rounding) with a sticky header so
Save/Close stay reachable while scrolling. Desktop unchanged: centered
max-w-3xl card.
- The two-column body (content | actions) now stacks on phones
(flex-col md:flex-row); the right Actions column is w-full md:w-36.
Desktop centered-card layout verified unchanged. Smoke 5/5; mobile specs 10/10;
typecheck clean.
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
0 commit comments