Skip to content

Mobile site

Sébastien LUCAS edited this page Jun 5, 2014 · 7 revisions

There is some changes needed when converting to mobile

If you have a scrollable div using overflow: auto or overflow: scroll, you will notice that the scroll is slow or choppy. To make the inline scroll smooth, just add the following in your css class:

#SCROLLABLE_DIV {
  height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

On the desktop the rule will appear as not applied, but it will be applied on mobile iphone

WIKI by Sébastien Lucas CEO & Funder or Bricks

Clone this wiki locally