From e76980246a401962f852608c4dda14ad6b47e51c Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Mon, 3 Feb 2025 00:34:54 +0000 Subject: [PATCH] Revert "we have lots of space" This reverts commit 2917ab58ce1b56bfcba176a7bb6af2cd3cb893f7. --- src/components/material/Drawer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/material/Drawer.tsx b/src/components/material/Drawer.tsx index 5df134d2..cb974985 100644 --- a/src/components/material/Drawer.tsx +++ b/src/components/material/Drawer.tsx @@ -32,7 +32,7 @@ interface DrawerProps { const Drawer: ParentComponent = (props) => { const dimensions = useDimensions() const drawerWidth = () => Math.min(dimensions().width - PEEK, 360) - const modal = () => dimensions().width < 840 + const modal = () => dimensions().width < 1280 const contentWidth = () => `calc(100% - ${modal() ? 0 : drawerWidth()}px)` const [open, setOpen] = createSignal(false)