I've searched for 15 minutes for a similar question but could not find it, so here it is :
My app is a fullscreen canvas with the user constantly moving is finger on the screen, thus I want to get rid of chrome native "max-scroll" overlay (see picture below), which occurs when the user is moving his finger up or down
My body is stylised like so :
body {
width: 100vw;
height: 100vh;
overflow: hidden;
}
And I've tried things like preventDefault() on window touchstart and scroll events but nothing seems to do the work :(
