This is an automated email from the ASF dual-hosted git repository.
apratim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb-site.git
The following commit(s) were added to refs/heads/master by this push:
new 0e233c1 Updated Apache logo size
0e233c1 is described below
commit 0e233c1da6b99e2eaa4a0a6fd58df19e19d3184a
Author: Apratim Shukla <[email protected]>
AuthorDate: Wed May 22 22:13:48 2024 -0700
Updated Apache logo size
---
src/components/Footer/index.tsx | 4 ++--
src/styles/index.css | 11 +++++++++++
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx
index 5923ff1..ce41ff2 100644
--- a/src/components/Footer/index.tsx
+++ b/src/components/Footer/index.tsx
@@ -17,7 +17,7 @@ const Footer = () => {
<div className="-mx-4 flex flex-wrap">
<div className="w-full px-4 md:w-1/2 lg:w-4/12 xl:w-5/12">
<div className="mb-12 max-w-[360px] lg:mb-16">
- <Link href="/" className="mb-8 inline-block">
+ <Link href="/" className="custom-inline-block">
<Image
src="/images/logo/logo.svg"
alt="logo"
@@ -157,7 +157,7 @@ const Footer = () => {
<div className="h-px w-full bg-gradient-to-r from-transparent
via-[#D2D8E183] to-transparent dark:via-[#959CB183]"></div>
<div className="flex justify-center my-2">
- <div className="w-200 h-100">
+ <div className="apache-logo">
<Image
src="/images/podling/apache.png"
alt="logo"
diff --git a/src/styles/index.css b/src/styles/index.css
index 2db92e0..01b0575 100644
--- a/src/styles/index.css
+++ b/src/styles/index.css
@@ -217,3 +217,14 @@
flex-wrap: wrap;
gap: 0.5rem;
}
+
+.apache-logo {
+ height: 35px;
+ width: auto;
+}
+
+.custom-inline-block {
+ display: inline-block;
+ margin-bottom: 2rem;
+ height: 100px;
+}