From 7cdf5e5c6e5dd00c4678f3c461252802e091fa53 Mon Sep 17 00:00:00 2001 From: Ashish Sajwan Date: Fri, 23 Jan 2015 13:55:33 +0530 Subject: [PATCH] fix : Body can scroll horizontally on Android issue discussed here https://github.com/jakiestfu/Snap.js/issues/238 --- snap.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/snap.css b/snap.css index 97e17a6..fefe0a8 100755 --- a/snap.css +++ b/snap.css @@ -71,3 +71,13 @@ html, body { .snapjs-expand-right .snap-drawer-right { width: 100%; } + +.snapjs-right, +.snapjs-left { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + overflow: hidden; +}