From e45b91f94147c42af0353025143dfa13886c1fbb Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 21 Sep 2020 14:53:25 -0400 Subject: [PATCH] Fix hero header height on mobile After looking around on my phone, 150px was to small for most of the faq pages. 250px seems to look fine on mobile so just use that everywhere. --- web/scss/components/_hero.scss | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/web/scss/components/_hero.scss b/web/scss/components/_hero.scss index a16509fc..e55fba64 100644 --- a/web/scss/components/_hero.scss +++ b/web/scss/components/_hero.scss @@ -33,13 +33,7 @@ } &.hero--half-height { - @media (min-width: 951px) { - height: 250px; - } - - @media (max-width: 950px) { - height: 150px; - } + height: 250px; } &.hero--news {