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.
This commit is contained in:
Leonard Kim 2017-11-15 09:51:25 -08:00 committed by yanas
parent b37bbcc622
commit 77f9a0641a
1 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,9 @@
#welcome_page {
height: 100%;
overflow: auto;
position: relative;
}
#disable_welcome {
display:none;
}