From c119d67f78d94a82011f7c87eba634f8bd1b96d9 Mon Sep 17 00:00:00 2001 From: Mikko Koski Date: Thu, 18 May 2017 09:16:39 +0300 Subject: [PATCH] Fixes modal scrolling issue by changing height 100vh to bottom 0 --- src/components/Modal/Modal.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Modal/Modal.css b/src/components/Modal/Modal.css index bc3e91e2..438875f9 100644 --- a/src/components/Modal/Modal.css +++ b/src/components/Modal/Modal.css @@ -5,7 +5,7 @@ flex-direction: column; position: fixed; top: 0; - height: 100vh; + bottom: 0; width: 100%; z-index: 100; background-color: white;