From 7e23558b9511b313f58e6a0c0bde3b1e102d2ac3 Mon Sep 17 00:00:00 2001 From: Corwin Smith Date: Tue, 25 Oct 2022 20:56:07 -0600 Subject: [PATCH] Wrap up header and home hero --- src/components/UI/Header.tsx | 2 +- src/components/UI/homepage/HomeHero.tsx | 5 ++++- src/theme/foundations/sizes.ts | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/UI/Header.tsx b/src/components/UI/Header.tsx index e32c175aae..9f753aa7e4 100644 --- a/src/components/UI/Header.tsx +++ b/src/components/UI/Header.tsx @@ -105,7 +105,7 @@ export const Header: FC = () => { {/* HAMBURGUER MENU */} - + diff --git a/src/components/UI/homepage/HomeHero.tsx b/src/components/UI/homepage/HomeHero.tsx index b6a6e4e543..1f1259d4f9 100644 --- a/src/components/UI/homepage/HomeHero.tsx +++ b/src/components/UI/homepage/HomeHero.tsx @@ -10,7 +10,7 @@ export const HomeHero: FC = () => { border='2px solid' borderColor='brand.light.primary' px={4} - py={{ base: 8, md: 5 }} + py={{ base: 8, m:24, lg: 4 }} flexGrow={1} > @@ -19,6 +19,9 @@ export const HomeHero: FC = () => { textStyle='h1' mb={{ base: 2, md: 4 }} textAlign={{ base: 'center', md: 'left' }} + fontSize={{ base: '3rem', md: '6rem'}} + lineHeight={{ md: '6rem' }} + fontWeight='500' > go-ethereum diff --git a/src/theme/foundations/sizes.ts b/src/theme/foundations/sizes.ts index 7cd50316be..3a904c1d60 100644 --- a/src/theme/foundations/sizes.ts +++ b/src/theme/foundations/sizes.ts @@ -1,6 +1,7 @@ export const sizes = { container: { sm: '480px', + md: '768px', lg: '1096px', xl: '1200px', '2xl': '1536px'