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; }