From 352ba85272048521131340a1cc2fc67a67afedf2 Mon Sep 17 00:00:00 2001 From: Whymarrh Whitby Date: Mon, 24 Sep 2018 19:30:17 -0230 Subject: Fix height of first-time-flow container, again but different --- mascara/src/app/first-time/index.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mascara/src/app/first-time/index.css b/mascara/src/app/first-time/index.css index d7010d6da..a575fe97e 100644 --- a/mascara/src/app/first-time/index.css +++ b/mascara/src/app/first-time/index.css @@ -8,7 +8,6 @@ .first-time-flow { width: 100vw; - height: 100vh; background-color: #fff; overflow: auto; display: flex; @@ -18,6 +17,12 @@ font-family: Roboto; } +@media screen and (min-height: 576px) { + .first-time-flow { + height: 100vh; + } +} + .alpha-warning__container { display: flex; justify-content: center; -- cgit