feat(dispatch): Phase 2 — responsive layout, collapsible panels, bug fixes

- Fix tab overflow: scrollable tab bar, shortened labels (Open/Risk/Done)
- Cap DROP_POOL to 3 fires, no repeat flooding
- Resizable drag handles on desktop (xl 1280px breakpoint)
- Collapsible panels on mobile/tablet — Map + AI collapsed by default on mobile
- iPad Air + iPad Pro 11" treated as tablet via xl breakpoint
- Fixed lead list heights: 22rem mobile → 72rem xl (8 cards visible)
- PageTransition h-full fix to maintain height chain
This commit is contained in:
Satyam
2026-03-26 01:57:09 +05:30
parent 1d6d587ebf
commit 2fdb55e24c
3 changed files with 21 additions and 15 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ const PageTransition = ({ children }) => {
return (
<div
key={location.pathname}
className="animate-in fade-in slide-in-from-bottom-4 duration-500 ease-out fill-mode-forwards"
className="h-full animate-in fade-in slide-in-from-bottom-4 duration-500 ease-out fill-mode-forwards"
>
{children}
</div>