Skip to content

Commit

Permalink
fix(welcome-page): allow scrolling
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
virtuacoplenny authored and yanas committed Nov 15, 2017
1 parent b37bbcc commit 77f9a06
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions css/_welcome_page.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#welcome_page {
height: 100%;
overflow: auto;
position: relative;
}

#disable_welcome {
display:none;
}
Expand Down

0 comments on commit 77f9a06

Please sign in to comment.