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 ''; }