style: tiny adjustment in dividers

This commit is contained in:
Daniel Gonzalez Albo
2025-10-06 22:30:31 +02:00
committed by Nicolás Hatcher Andrés
parent 3f083d9882
commit 7bcd978998
2 changed files with 6 additions and 7 deletions

View File

@@ -99,10 +99,9 @@ const FormulaSymbolButton = styled(StyledButton)`
const Divider = styled("div")` const Divider = styled("div")`
background-color: ${theme.palette.grey["300"]}; background-color: ${theme.palette.grey["300"]};
width: 1px; min-width: 1px;
height: 20px; height: 16px;
margin-left: 16px; margin: 0px 16px;
margin-right: 16px;
`; `;
const FormulaContainer = styled("div")` const FormulaContainer = styled("div")`

View File

@@ -593,9 +593,9 @@ const ColorLine = styled("div")<{ color: string }>(({ color }) => ({
})); }));
const Divider = styled("div")({ const Divider = styled("div")({
width: "0px", minWidth: "1px",
height: "12px", height: "16px",
borderLeft: `1px solid ${theme.palette.grey["300"]}`, backgroundColor: theme.palette.grey["300"],
margin: "0px 8px", margin: "0px 8px",
}); });