diff --git a/src/web/src/components/Posts/GitHubInfo/Repos.tsx b/src/web/src/components/Posts/GitHubInfo/Repos.tsx index 736a518d9f..ba8ff798cd 100644 --- a/src/web/src/components/Posts/GitHubInfo/Repos.tsx +++ b/src/web/src/components/Posts/GitHubInfo/Repos.tsx @@ -28,12 +28,17 @@ const useStyles = makeStyles((theme: Theme) => }, repos: { paddingLeft: 0, - display: 'flex', - flexWrap: 'wrap', + [theme.breakpoints.down(1205)]: { + display: 'flex', + flexWrap: 'wrap', + }, gap: '1.5rem', }, repo: { listStyle: 'none', + [theme.breakpoints.up(1205)]: { + marginBottom: '1.5rem', + }, }, }) );