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")`
background-color: ${theme.palette.grey["300"]};
width: 1px;
height: 20px;
margin-left: 16px;
margin-right: 16px;
min-width: 1px;
height: 16px;
margin: 0px 16px;
`;
const FormulaContainer = styled("div")`

View File

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