1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: reset border radius on mobile

This commit is contained in:
Fredrik Oseberg 2021-05-21 14:17:32 +02:00
parent 70c5cd7045
commit 413818f6b4

View File

@ -17,6 +17,7 @@ export const useStyles = makeStyles(theme => ({
width: '40%',
borderRadius: '3px',
[theme.breakpoints.down('sm')]: {
borderRadius: '0',
width: '100%',
minHeight: 'auto',
},
@ -29,6 +30,7 @@ export const useStyles = makeStyles(theme => ({
backgroundColor: '#fff',
position: 'relative',
[theme.breakpoints.down('sm')]: {
borderRadius: '0',
width: '100%',
position: 'static',
minHeight: 'auto',