FIX: thick line should be 3px in the picker

This commit is contained in:
Nicolás Hatcher
2025-04-14 12:51:13 +02:00
committed by Nicolás Hatcher Andrés
parent 6ac8f7e948
commit acdf85dbc3

View File

@@ -361,7 +361,7 @@ const MediumLine = styled("div")`
`; `;
const ThickLine = styled("div")` const ThickLine = styled("div")`
width: 68px; width: 68px;
border-top: 1px solid ${theme.palette.grey["900"]}; border-top: 3px solid ${theme.palette.grey["900"]};
`; `;
const Divider = styled("div")` const Divider = styled("div")`