diff options
author | eug-vs <eug-vs@keemail.me> | 2020-12-04 03:55:07 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-12-04 03:55:07 +0300 |
commit | bcc452f6e47bed86bb9c9cb6a54b947dd2446027 (patch) | |
tree | ac38500d7e1c7d2953eaf9d8d78cce2c317a9b40 | |
parent | ef7a52434e5b6fbfb9c31af0172861a9e2bb0351 (diff) | |
download | famcs-kit-bcc452f6e47bed86bb9c9cb6a54b947dd2446027.tar.gz |
feat: only allow 3 cards in a row max
-rw-r--r-- | src/containers/BsuFantomSection/BsuFantomSection.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/BsuFantomSection/BsuFantomSection.tsx b/src/containers/BsuFantomSection/BsuFantomSection.tsx index 6420402..418021c 100644 --- a/src/containers/BsuFantomSection/BsuFantomSection.tsx +++ b/src/containers/BsuFantomSection/BsuFantomSection.tsx @@ -27,7 +27,7 @@ const BsuFantomSection: React.FC = () => { <ContentSection sectionName="Upcoming events" level={2}> <Grid container spacing={2}> {events?.map((event, index) => ( - <Grid item lg={3} md={4} sm={6} xs={12}> + <Grid item md={4} sm={6} xs={12}> <EventCard event={event} mutate={mutate} /> </Grid> ))} |