sana137.in

Sana's gatsbyjs-based blog
git clone http://git.hanabi.in/repos/sana137.in.git
Log | Files | Refs | README | LICENSE

commit 76a8a558260999d7e7c1dbaacb05899ed424fc82
parent 8cbc5876f1fc7a5f54a45fc52173a83b4b5d4eeb
Author: Agastya Chandrakant <me@hanabi.in>
Date:   Thu, 19 Dec 2019 13:58:19 +0530

fix class

Diffstat:
Msrc/templates/blogPost.js | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/templates/blogPost.js b/src/templates/blogPost.js @@ -84,7 +84,9 @@ function BlogPostTemplate({ data, pageContext }) { > <img src={photo} className={'avatar-wrapper'} alt={name} /> </a> */} - <img src={photo} className={'avatar-wrapper'} alt={name} /> + <a className={'author-profile-image'}> + <img src={photo} className={'avatar-wrapper'} alt={name} /> + </a> <AuthorCardContent name={name} description={description} /> </section> <ReadMore />