mirror of https://github.com/zulip/zulip.git
Overflow scroll on app instead of body
(imported from commit 2be63b16afe212e95e983745eaa0bc5dc8e1397e)
This commit is contained in:
parent
967d3c9c65
commit
dedd3cf03c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue