Overflow scroll on app instead of body

(imported from commit 2be63b16afe212e95e983745eaa0bc5dc8e1397e)
This commit is contained in:
Allen Rabinovich 2014-01-15 12:13:41 -07:00 committed by Jason Michalski
parent 967d3c9c65
commit dedd3cf03c
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,9 @@
body,
html {
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: hidden;
}
#css-loading {
@ -10,7 +12,6 @@ html {
body {
font-family: 'Humbug', 'Helvetica Neue', Helvetica, Arial, sans-serif;
overflow-y: auto;
}
/* Common background color */
@ -85,6 +86,8 @@ a {
.app {
width: 100%;
height: 100%;
overflow-y: auto;
z-index: 99;
}