From 8ce34045d60b94da956abe56dbc4938b31efeb9d Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 25 Nov 2025 22:04:04 +0100 Subject: [PATCH] fix: mobile adjustments --- webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx | 6 +++--- .../components/WorkbookSettings/WorkbookSettingsDialog.tsx | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx b/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx index cf43641..2c78e3c 100644 --- a/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx +++ b/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx @@ -193,9 +193,6 @@ const RightContainer = styled("a")` height: 100%; padding: 0px 8px; gap: 4px; - @media (max-width: 769px) { - display: none; - } `; const LogoLink = styled("div")` @@ -215,6 +212,9 @@ const LogoLink = styled("div")` transition: "all 0.2s"; outline: 1px solid ${theme.palette.grey["200"]}; } + @media (max-width: 769px) { + display: none; + } `; export default SheetTabBar; diff --git a/webapp/IronCalc/src/components/WorkbookSettings/WorkbookSettingsDialog.tsx b/webapp/IronCalc/src/components/WorkbookSettings/WorkbookSettingsDialog.tsx index ab82b8d..f455644 100644 --- a/webapp/IronCalc/src/components/WorkbookSettings/WorkbookSettingsDialog.tsx +++ b/webapp/IronCalc/src/components/WorkbookSettings/WorkbookSettingsDialog.tsx @@ -210,7 +210,8 @@ const WorkbookSettingsDialog = (properties: WorkbookSettingsDialogProps) => { const StyledDialog = styled(Dialog)` & .MuiPaper-root { max-width: 320px; - min-width: 320px; + width: 320px; + min-width: 280px; border-radius: 8px; padding: 0px; }