From a017001d6f377a76095165ae66f4d07a5b079539 Mon Sep 17 00:00:00 2001 From: Chen Hui Jing <1461498+huijing@users.noreply.github.com> Date: Thu, 25 Jan 2024 21:13:48 +0200 Subject: [PATCH] Fix splash page layout bug and logo color --- src/components/DevelopersLogo.astro | 2 +- src/components/FoundationLogo.astro | 2 +- src/pages/index.astro | 6 +----- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/components/DevelopersLogo.astro b/src/components/DevelopersLogo.astro index 5211375..f2ad6fb 100644 --- a/src/components/DevelopersLogo.astro +++ b/src/components/DevelopersLogo.astro @@ -1,4 +1,4 @@ --- const { class: className } = Astro.props; --- -Interledger logo (full color) +Interledger logo (full color) diff --git a/src/components/FoundationLogo.astro b/src/components/FoundationLogo.astro index 799cb57..c4595d5 100644 --- a/src/components/FoundationLogo.astro +++ b/src/components/FoundationLogo.astro @@ -1,4 +1,4 @@ --- const { class: className } = Astro.props; --- -Interledger Foundation logo +Interledger Foundation logo diff --git a/src/pages/index.astro b/src/pages/index.astro index 22d5532..fc3f8a4 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -88,14 +88,10 @@ import HomeLayout from '../layouts/HomeLayout.astro'; .hero { min-height: 70vh; } - - .content-wrapper { - align-items: center; - } } @media screen and (min-width: 1010px) { - .content-wrapper { + .hero .content-wrapper { align-items: end; } }