ColorInput - add boxshadow and change bg color

This commit is contained in:
Dawid Wysokiński 2020-12-25 16:06:55 +01:00
parent 925c8fc4d8
commit 9c86666042

View File

@ -103,10 +103,12 @@ function ColorInput({
);
}
const useStyles = makeStyles(() => ({
const useStyles = makeStyles(theme => ({
popper: {
zIndex: theme.zIndex.appBar + 1,
'& .block-picker': {
backgroundColor: '#ecd7ac !important',
backgroundColor: `${theme.palette.background.paper} !important`,
boxShadow: `${theme.shadows[4]} !important`,
},
},
}));