From f8069a2fbceaf73e56efb3acac0785d08ade2088 Mon Sep 17 00:00:00 2001 From: Leon Xu Date: Sat, 3 Sep 2022 13:04:32 -0700 Subject: [PATCH] doc: add styles in MovieList stylesheet --- src/components/MovieList/styles.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/components/MovieList/styles.js b/src/components/MovieList/styles.js index e69de29..fed624a 100644 --- a/src/components/MovieList/styles.js +++ b/src/components/MovieList/styles.js @@ -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', + }, + }, +}));