From fd744d28a33cb9cb74164a4b7d461e30af9b542e Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 26 Jan 2025 20:08:27 +0100 Subject: [PATCH] fix: use theme colors on divider --- webapp/IronCalc/src/components/formulabar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/IronCalc/src/components/formulabar.tsx b/webapp/IronCalc/src/components/formulabar.tsx index 4437980..b3ddc95 100644 --- a/webapp/IronCalc/src/components/formulabar.tsx +++ b/webapp/IronCalc/src/components/formulabar.tsx @@ -100,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;