GUAC-1043: Position viewport and menu absolutely, not with fixed. This also solves some iOS issues with the rendering of fixed elements after rotation.

This commit is contained in:
Michael Jumper
2015-01-29 18:05:58 -08:00
parent 5a95edfb71
commit bb61a25166
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@
#menu { #menu {
overflow: auto; overflow: auto;
position: fixed; position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
max-width: 100%; max-width: 100%;

View File

@@ -21,7 +21,7 @@
*/ */
.viewport { .viewport {
position: fixed; position: absolute;
bottom: 0; bottom: 0;
left: 0; left: 0;
width: 100%; width: 100%;