Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions snap.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,17 @@ html, body {
z-index: 2;
overflow: auto;
-webkit-overflow-scrolling: touch;
/*
Fix for divs with position:fixed inside the snap-content scroll problem:
http://stackoverflow.com/questions/15194313/webkit-css-transform3d-position-fixed-issue

More info: http://meyerweb.com/eric/thoughts/2011/09/12/un-fixing-fixed-elements-with-css-transforms/
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
*/
}

.snap-drawers {
Expand Down