From e57101f2798bac22d0a1551561f97c842d74f85c Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 26 Jan 2025 19:34:30 +0100 Subject: [PATCH] update: remove ironcalc link on mobile, padding adjustments --- .../IronCalc/src/components/SheetTabBar/SheetTabBar.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx b/webapp/IronCalc/src/components/SheetTabBar/SheetTabBar.tsx index 3d572d3..d382a89 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")`