diff --git a/src/web/src/components/Posts/Commits.tsx b/src/web/src/components/Posts/Commits.tsx index eefd625ab6..3b95436a40 100644 --- a/src/web/src/components/Posts/Commits.tsx +++ b/src/web/src/components/Posts/Commits.tsx @@ -26,6 +26,7 @@ const useStyles = makeStyles((theme: Theme) => }, commits: { display: 'flex', + flexWrap: 'wrap', margin: 0, }, commit: { diff --git a/src/web/src/components/Posts/Issues.tsx b/src/web/src/components/Posts/Issues.tsx index 5a3942b834..6cc2022ad2 100644 --- a/src/web/src/components/Posts/Issues.tsx +++ b/src/web/src/components/Posts/Issues.tsx @@ -26,6 +26,7 @@ const useStyles = makeStyles((theme: Theme) => }, issues: { display: 'flex', + flexWrap: 'wrap', margin: 0, }, issue: { diff --git a/src/web/src/components/Posts/PullRequests.tsx b/src/web/src/components/Posts/PullRequests.tsx index 6553213046..0b16e46a81 100644 --- a/src/web/src/components/Posts/PullRequests.tsx +++ b/src/web/src/components/Posts/PullRequests.tsx @@ -26,6 +26,7 @@ const useStyles = makeStyles((theme: Theme) => }, pullRequests: { display: 'flex', + flexWrap: 'wrap', margin: 0, }, pullRequest: {