Skip to content

Commit

Permalink
Remove redundant css class
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonChong96 committed May 18, 2020
1 parent 643a34d commit 17c9e4f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/client/components/HomePage/FeatureListSliver.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
Card,
CardContent,
Grid,
Hidden,
Typography,
createStyles,
makeStyles,
Expand Down Expand Up @@ -32,7 +33,6 @@ const useStyles = makeStyles((theme) =>
maxWidth: '624px',
},
},
nestedGrid: {},
card: {
display: 'flex',
boxShadow: 'none',
Expand Down Expand Up @@ -97,6 +97,9 @@ const FeatureListSliver = () => {
>
Created for public officers{' '}
</Typography>
<Hidden smUp>
<br />
</Hidden>
<Typography
variant="body1"
color="textPrimary"
Expand All @@ -121,7 +124,7 @@ const FeatureListSliver = () => {
className={classes.columnGrid}
>
{column.map((card) => (
<Grid item key={card.title} className={classes.nestedGrid}>
<Grid item key={card.title}>
<Card className={classes.card}>
<img
className={classes.cardVectorIcon}
Expand Down

0 comments on commit 17c9e4f

Please sign in to comment.