Upgrade Prettier to 2.0.4. Reformatted all JS files

This commit is contained in:
Deluan
2020-04-20 09:09:29 -04:00
parent de115ff466
commit b3f70538a9
55 changed files with 318 additions and 286 deletions
+13 -13
View File
@@ -4,44 +4,44 @@ export const useStyles = makeStyles((theme) => ({
container: {
[theme.breakpoints.down('xs')]: {
padding: '0.7em',
minWidth: '24em'
minWidth: '24em',
},
[theme.breakpoints.up('sm')]: {
padding: '1em',
minWidth: '32em'
}
minWidth: '32em',
},
},
albumCover: {
display: 'inline-block',
[theme.breakpoints.down('xs')]: {
height: '8em',
width: '8em'
width: '8em',
},
[theme.breakpoints.up('sm')]: {
height: '10em',
width: '10em'
width: '10em',
},
[theme.breakpoints.up('lg')]: {
height: '15em',
width: '15em'
}
width: '15em',
},
},
albumDetails: {
display: 'inline-block',
verticalAlign: 'top',
[theme.breakpoints.down('xs')]: {
width: '14em'
width: '14em',
},
[theme.breakpoints.up('sm')]: {
width: '26em'
width: '26em',
},
[theme.breakpoints.up('lg')]: {
width: '38em'
}
width: '38em',
},
},
albumTitle: {
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis'
}
textOverflow: 'ellipsis',
},
}))