From 118613d26ceb6d084f29c3ca7e13fff932659562 Mon Sep 17 00:00:00 2001 From: Carl Summers <31711543+CSumm@users.noreply.github.com> Date: Sat, 24 Nov 2018 19:27:03 -0500 Subject: [PATCH] Fix Modal to appear below url searchbar on Google Chrome mobile browser (#1277) * Fix modal box to not be cutoff by url searchbar * Made Modal at 100%; not blocked by searchbar * Remove position absolute tag from media query for modal --- client/app/components/Modal/Modal.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/components/Modal/Modal.scss b/client/app/components/Modal/Modal.scss index 281bbceb3b..30fbc9f438 100644 --- a/client/app/components/Modal/Modal.scss +++ b/client/app/components/Modal/Modal.scss @@ -34,7 +34,7 @@ z-index: $z-index-front; @media screen and (max-width: $small) { width: 100vw; - height: 100vh; + height: 100%; border-radius: 0; } &Header {