Merge pull request #1150 from mirumee/SALEOR-2263/image-visibility-in-dark-mode
transparent bg & thicker selection border
This commit is contained in:
commit
4f39e75f2d
1 changed files with 3 additions and 2 deletions
|
@ -21,7 +21,7 @@ const useStyles = makeStyles(
|
|||
width: "100%"
|
||||
},
|
||||
imageContainer: {
|
||||
background: "#ffffff",
|
||||
background: "transparent",
|
||||
border: "1px solid #eaeaea",
|
||||
borderRadius: theme.spacing(),
|
||||
cursor: "pointer",
|
||||
|
@ -43,7 +43,8 @@ const useStyles = makeStyles(
|
|||
}
|
||||
},
|
||||
selectedImageContainer: {
|
||||
borderColor: theme.palette.primary.main
|
||||
borderColor: theme.palette.primary.main,
|
||||
borderWidth: "2px"
|
||||
}
|
||||
}),
|
||||
{ name: "ProductVariantImageSelectDialog" }
|
||||
|
|
Loading…
Reference in a new issue