From 2635a6e84ab0124561b989564b6ff4f380169f02 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Sirois Date: Thu, 21 Nov 2019 04:54:27 -0500 Subject: [PATCH] fix: make site title much smaller mobile/tablet --- src/components/HomeHeader/styles.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/HomeHeader/styles.tsx b/src/components/HomeHeader/styles.tsx index 4e02730..c103d0c 100644 --- a/src/components/HomeHeader/styles.tsx +++ b/src/components/HomeHeader/styles.tsx @@ -50,6 +50,14 @@ export const Title = styled.h1` font-size: 32px; } } + + @media screen and (max-width: 991px) { + font-size: 42px; + } + + @media screen and (max-width: 767px) { + font-size: 32px; + } ` export const FadedBottomWave = styled.div`