Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected alignment of charts in medium devices (#39) #75

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/[username]/Charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const borderColor = [

const Charts = ({ commitsPerRepo, starsPerRepo, reposPerLanguages, starsPerLanguages }) => {
return (
<GridContainer name="Charts" className={'grid-cols-2 gap-0 gap-y-6 px-2 md:grid-cols-4 md:gap-8 md:px-6'}>
<GridContainer name="Charts" className={'flex flex-row flex-wrap justify-evenly gap-0 gap-y-6 px-2 md:gap-8 md:px-6'}>
<div className="">
<Doughnut
title="Commits per Repo"
Expand Down
2 changes: 1 addition & 1 deletion app/[username]/FollowUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const FollowUp = ({ follwoup }) => {
const { issues_by_user, pr_by_user, issues_on_user, pr_on_user, login } = follwoup;

return (
<GridContainer name="Follow Up" className={'grid-cols-2 gap-0 gap-y-6 px-2 md:grid-cols-4 md:gap-8 md:px-6'}>
<GridContainer name="Follow Up" className={'flex flex-row flex-wrap justify-evenly gap-0 gap-y-6 px-2 md:gap-8 md:px-6'}>
<div>
<Doughnut
options={{ plugins: { title: { text: `Issues by ${login}` } } }}
Expand Down