From 77f9a0641aa03b9d1ee5b4c4abc9b55df7420c42 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Wed, 15 Nov 2017 09:51:25 -0800 Subject: [PATCH] fix(welcome-page): allow scrolling Overflow on body was set to hidden, likely because of various tricks used to hide elements off screen in the SPA. Overflow hidden also has the benefit of hiding scroll bounce when using a MacBook touchpad. The welcome page is the exception that needs scrolling, so style welcome page to scroll. A couple others had made pull requests to addrses this issue but there hasn't been follow up. --- css/_welcome_page.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/_welcome_page.scss b/css/_welcome_page.scss index 193231a55..2e27a370b 100644 --- a/css/_welcome_page.scss +++ b/css/_welcome_page.scss @@ -1,3 +1,9 @@ +#welcome_page { + height: 100%; + overflow: auto; + position: relative; +} + #disable_welcome { display:none; }