style: tiny adjustment in dividers
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
3f083d9882
commit
7bcd978998
@@ -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")`
|
||||||
|
|||||||
@@ -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",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user