Skip to content

Commit

Permalink
Fix horizontal overflow in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
menghif authored and aserputov committed Feb 5, 2022
1 parent da002a9 commit 1cda631
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/web/src/components/Posts/GitHubInfo/Repos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
},
})
);
Expand Down

0 comments on commit 1cda631

Please sign in to comment.