diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-11-17 15:19:39 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-11-17 15:19:39 +0300 |
commit | 99b4e4aa53d3ade389fc270f9ba9b02904da93f6 (patch) | |
tree | 84750528e47ae35e136bc8f24c1a575ccc81092f /src/containers/AvatarCropModal | |
parent | 3fef7795681c405322aed6e1c876948ebc2cc932 (diff) | |
download | which-ui-99b4e4aa53d3ade389fc270f9ba9b02904da93f6.tar.gz |
Make responsive avatar crop component
Diffstat (limited to 'src/containers/AvatarCropModal')
-rw-r--r-- | src/containers/AvatarCropModal/AvatarCropModal.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/containers/AvatarCropModal/AvatarCropModal.tsx b/src/containers/AvatarCropModal/AvatarCropModal.tsx index a24d2b4..4decdfb 100644 --- a/src/containers/AvatarCropModal/AvatarCropModal.tsx +++ b/src/containers/AvatarCropModal/AvatarCropModal.tsx @@ -22,10 +22,10 @@ const useStyles = makeStyles(theme => ({ cropContainer: {
position: 'relative',
width: '100%',
- height: '100vh',
- background: '#333',
+ // height: '100vh',
+ // background: '#333',
[theme.breakpoints.up('sm')]: {
- height: 400,
+ // height: 400,
},
}
}));
|