Scroll "bouncing" with macos trackpad

Hi there!
I’ve been building a navigation in which you navigate through the world by scrolling. However if you scroll on MacOS with the trackpad there is this weird bouncing effect as you can see in the video, i attached.

Tried solving it by setting the overscroll behaviour to contain, but that didn’t do the trick so far.

Any idead?
Cheers :slightly_smiling_face:

Original Post on Discord

by user 263717937473519619

This looks like some wrong/missing CSS ? Can you share a link to the website?

sorry for the delay, here you go: https://sixth-functional-skateboard.glitch.me

by user 263717937473519619

I’m getting this error here a lot too - could it be related?

https://www.chromestatus.com/feature/6662647093133312

Can you add this piece of CSS?

div {
  overscroll-behavior: none;
  overflow : scroll
}

works like a charm, thank you :slightly_smiling_face:

by user 263717937473519619

Thanks for verifying - we should probably add this to our templates!

@herbst🌵 only thing that i might add is instead of using overflow: scroll; I’d suggest using overflow: hidden; so you don’t have the nasty scrollbars visible!

by user 263717937473519619