doc: add styles in MovieList stylesheet

This commit is contained in:
Leon Xu
2022-09-03 13:04:32 -07:00
parent f59649d811
commit f8069a2fbc
+13
View File
@@ -0,0 +1,13 @@
import { makeStyles } from '@mui/styles';
export default makeStyles((theme) => ({
movieContainer: {
display: 'flex',
justifyContent: 'space-between',
overflow: 'auto',
flexWrap: 'wrap',
[theme.breakpoints.down('sm')]: {
justifyContent: 'center',
},
},
}));