From 8b3bd7943e5912b1380147df3281da2fb258074d Mon Sep 17 00:00:00 2001 From: Daniel Gonzalez Albo Date: Sun, 9 Nov 2025 20:22:59 +0100 Subject: [PATCH] update: mobile support --- webapp/IronCalc/src/components/RightDrawer/RightDrawer.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webapp/IronCalc/src/components/RightDrawer/RightDrawer.tsx b/webapp/IronCalc/src/components/RightDrawer/RightDrawer.tsx index 538a004..0840acb 100644 --- a/webapp/IronCalc/src/components/RightDrawer/RightDrawer.tsx +++ b/webapp/IronCalc/src/components/RightDrawer/RightDrawer.tsx @@ -143,6 +143,12 @@ const DrawerContainer = styled("div")( width: `${$drawerWidth}px`, display: "flex", flexDirection: "column", + "@media (max-width: 600px)": { + width: "100%", + borderLeft: "none", + top: "0px", + zIndex: 1000, + }, }), );