This is an automated email from the ASF dual-hosted git repository.
juzhiyuan 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 b70722a chore: Fix GitHub-icon sizes in team page (#313)
b70722a is described below
commit b70722ab8b3b239afe250591c50a8e4afbf5399f
Author: Shivam Singh <[email protected]>
AuthorDate: Sun Apr 18 02:52:24 2021 +0530
chore: Fix GitHub-icon sizes in team page (#313)
---
website/src/css/customTheme.css | 4 ++++
website/src/pages/team.js | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/website/src/css/customTheme.css b/website/src/css/customTheme.css
index 3de3dab..1b12316 100644
--- a/website/src/css/customTheme.css
+++ b/website/src/css/customTheme.css
@@ -565,6 +565,10 @@ a:hover {
height: 24px;
}
+.team-githubLogo{
+ height: 24px;
+}
+
/*newsletter section*/
.center-elem {
diff --git a/website/src/pages/team.js b/website/src/pages/team.js
index 05a6eb6..bb268e1 100644
--- a/website/src/pages/team.js
+++ b/website/src/pages/team.js
@@ -275,7 +275,7 @@ function Team(props) {
target="_blank"
key={repo}
>
- <GitHubLogo /> {repo}
+ <GitHubLogo className="team-githubLogo" /> {repo}
</RepoCard>
);
});