From d83629881b9778be8e0542bfaa3f806393947f97 Mon Sep 17 00:00:00 2001 From: rahuldkjain Date: Sat, 8 Aug 2020 17:02:30 +0530 Subject: [PATCH] [fix]: cards alignment i in mobile view --- src/components/markdown.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/markdown.js b/src/components/markdown.js index 49bc45c..a8dab42 100644 --- a/src/components/markdown.js +++ b/src/components/markdown.js @@ -55,7 +55,7 @@ const Markdown = (props) => { const GithubStats = (props) => { let link = "https://github-readme-stats.vercel.app/api?username=" + props.github + "&show_icons=true" if (props.show) { - return (<>{`${props.github}`}

); + return (<>{`

 ${props.github}

`}

); } return ''; } @@ -86,9 +86,9 @@ const Markdown = (props) => { let link = "https://github-readme-stats.vercel.app/api/top-langs/?username=" + props.github + "&layout=compact&hide=html" if (props.show) { if (!props.showStats) { - return (<>{`${props.github}`}

); + return (<>{`

${props.github}

`}

); } - return (<>{`${props.github}`}

); + return (<>{`

${props.github}

`}

); } return ''; }