Skip to content

Commit ac5a22a

Browse files
committed
Fix InvisibleDropArea not looking right when box-sizing isn't content-box by default.
1 parent 3fda79c commit ac5a22a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/InvisibleDropArea/InvisibleDropArea.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ const styles = theme => ({
4646
marginBottom: theme.spacing.unit * 3,
4747
width: 96,
4848
height: 96,
49-
padding: 16
49+
padding: 16,
50+
boxSizing: 'content-box'
5051
},
5152
icon: {
5253
color: theme.palette.getContrastText(theme.palette.primary.main),

0 commit comments

Comments
 (0)