diff --git a/src/components/common/FullScreenPanel.tsx b/src/components/common/FullScreenPanel.tsx index c5f79b879..a0a757361 100644 --- a/src/components/common/FullScreenPanel.tsx +++ b/src/components/common/FullScreenPanel.tsx @@ -12,6 +12,9 @@ interface FullScreenPanelProps { footer?: React.ReactNode; } +const DRAG_BAR_HEIGHT = 28; // px - match App.tsx +const HEADER_HEIGHT = 64; // px - match App.tsx + /** * Reusable full-screen panel component * Handles portal rendering, header with back button, and footer @@ -44,18 +47,30 @@ export const FullScreenPanel: React.FC = ({ className="fixed inset-0 z-[60] flex flex-col" style={{ backgroundColor: "hsl(var(--background))" }} > - {/* Header */} + {/* Drag region - match App.tsx */}
+ + {/* Header - match App.tsx */} +
-
-
+