negomi / react-burger-menu

:hamburger: An off-canvas sidebar component with a collection of effects and styles using CSS transitions and SVG path animations
http://negomi.github.io/react-burger-menu/
MIT License
5.05k stars 586 forks source link

Momentum scrolling disappeared #305

Closed sirojinadias closed 5 years ago

sirojinadias commented 5 years ago

Hi,

Momentum scrolling disappeared on mobile devices, at least on iOS 12 both Safari and Google Chrome.

Solved with this :

#pagewrap {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
sirojinadias commented 5 years ago

Solved with :

#pagewrap {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}