Skip to content

Commit b64a788

Browse files
committed
Fix card styling grid error
1 parent faed7ed commit b64a788

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/ProjectListItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ const ProjectListItem: React.FC<ProjectListItemProps> = ({
4343
const isMobileScreen = useMediaQuery(theme.breakpoints.down('sm'));
4444

4545
return (
46-
<Grid container xs={12} sm={6} md={4}>
46+
<Grid item xs={12} sm={6} md={4}>
4747
<Box
48-
sx={{ display: 'flex', marginBottom: isMobileScreen ? '20px' : '0' }}
48+
sx={{ display: 'flex', marginBottom: isMobileScreen ? '20px' : '0', height: '100%' }}
4949
>
5050
<Paper
5151
elevation={3}

0 commit comments

Comments
 (0)