This is an automated email from the ASF dual-hosted git repository.
liuxiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git
The following commit(s) were added to refs/heads/master by this push:
new 8a75e2b fix: author name wrong margin (#599)
8a75e2b is described below
commit 8a75e2bfb5309180191c1fad444fdd39ae908ec1
Author: Baoyuan <[email protected]>
AuthorDate: Wed Sep 15 08:10:43 2021 -0500
fix: author name wrong margin (#599)
---
website/src/theme/BlogPostItem/index.js | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/website/src/theme/BlogPostItem/index.js
b/website/src/theme/BlogPostItem/index.js
index 09f3563..f952bbc 100644
--- a/website/src/theme/BlogPostItem/index.js
+++ b/website/src/theme/BlogPostItem/index.js
@@ -66,9 +66,7 @@ function BlogPostItem(props) {
<div className="avatar__intro">
{author && (
<>
- <h4 className="avatar__name">
- <Link href={authorURL}
className={styles.authorName}>{`Author: ${author}`}</Link>
- </h4>
+ <Link href={authorURL}
className={styles.authorName}>{`Author: ${author}`}</Link>
</>
)}
</div>