slideout icon indicating copy to clipboard operation
slideout copied to clipboard

Android native browser scroll

Open monkeyinsight opened this issue 11 years ago • 1 comments

Scrolling of main content of page is available when menu is open. Tested on Android native browser 4.1 and 4.4.2

monkeyinsight avatar Mar 16 '15 16:03 monkeyinsight

i fixed this bug (seems to be webkit only) by putting overflow-x: hidden; position: absolute; in the style for the body element and another overflow-x: hidden; in the style for the html element

like this:

html { overflow-x: hidden; }

body { overflow-x: hidden; position:absolute; }

pepe4 avatar Oct 10 '17 09:10 pepe4