diff --git a/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx b/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx index 3d572d31..d382a899 100644 --- a/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx +++ b/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx @@ -123,6 +123,10 @@ const Container = styled("div")` font-family: Inter; background-color: ${theme.palette.common.white}; border-top: 1px solid ${theme.palette.grey["300"]}; + @media (max-width: 769px) { + padding-right: 0px; + padding-left: 8px; + } `; const Sheets = styled("div")` @@ -152,7 +156,7 @@ const Advert = styled("a")` text-decoration: underline; } @media (max-width: 769px) { - height: 100%; + display: none; } `; @@ -161,6 +165,9 @@ const LeftButtonsContainer = styled("div")` flex-direction: row; gap: 4px; padding-right: 12px; + @media (max-width: 769px) { + padding-right: 8px; + } `; const VerticalDivider = styled("div")` diff --git a/webapp/IronCalc/src/components/formatPicker.tsx b/webapp/IronCalc/src/components/formatPicker.tsx index 071dfa78..bc6e24fd 100644 --- a/webapp/IronCalc/src/components/formatPicker.tsx +++ b/webapp/IronCalc/src/components/formatPicker.tsx @@ -129,7 +129,6 @@ const StyledDialogContent = styled("div")` const StyledTextField = styled(TextField)` width: 100%; - min-width: 320px; border-radius: 4px; overflow: hidden; & .MuiInputBase-input { diff --git a/webapp/IronCalc/src/components/formulabar.tsx b/webapp/IronCalc/src/components/formulabar.tsx index 6c56005a..913730c2 100644 --- a/webapp/IronCalc/src/components/formulabar.tsx +++ b/webapp/IronCalc/src/components/formulabar.tsx @@ -1,6 +1,7 @@ import type { Model } from "@ironcalc/wasm"; import { styled } from "@mui/material"; import { Fx } from "../icons"; +import { theme } from "../theme"; import { COLUMN_WIDTH_SCALE, ROW_HEIGH_SCALE, @@ -99,7 +100,7 @@ const FormulaSymbolButton = styled(StyledButton)` `; const Divider = styled("div")` - background-color: #e0e0e0; + background-color: ${theme.palette.grey["300"]}; width: 1px; height: 20px; margin-left: 16px; @@ -127,14 +128,13 @@ const Container = styled("div")` const AddressContainer = styled("div")` padding-left: 16px; - color: #333; + color: ${theme.palette.common.black}; font-style: normal; font-weight: normal; - font-size: 11px; + font-size: 12px; display: flex; font-weight: 600; flex-grow: row; - min-width: ${headerColumnWidth}px; `; const CellBarAddress = styled("div")`