CellValidation: add box-shadow to improve dot appearance

This commit is contained in:
Sidney Alcantara
2021-09-09 18:54:23 +10:00
parent 0d64d82797
commit e7bfd4e943

View File

@@ -29,6 +29,11 @@ const Dot = styled("div")(({ theme }) => ({
borderRadius: "50%",
backgroundColor: theme.palette.error.main,
boxShadow: `0 0 0 4px var(--background-color)`,
".rdg-row:hover &": {
boxShadow: `0 0 0 4px var(--row-hover-background-color)`,
},
}));
export interface ICellValidationProps