Skip to content

Commit 48fd502

Browse files
committedFeb 10, 2015
fix(Grid): Add css to allow iOS momentum scroll
iOS devices apparently need a special vendor-prefixed css property in order to allow momentum scrolling in an element. I don't believe it pertains to other mobile devices Fixes #2671
1 parent 4a647b7 commit 48fd502

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/less/body.less

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
// overflow: auto; // TODO(c0bra): turn back on when virtual repeater is hooked up
1616
min-height: 20px;
1717
position: relative;
18+
overflow-y: scroll;
19+
-webkit-overflow-scrolling: touch;
1820

1921
:focus {
2022
outline: none;

0 commit comments

Comments
 (0)