In Chromium, if you swipe left or right, the browser back/forward gesture activates while trying to pan around the page.
I found the following CSS prevents this:
html, body { overscroll-behavior: contain; }
I tested this by adding the lines to the html and body sections in the devtool inspector, but I'm not sure where to add this in the app's code.
In Chromium, if you swipe left or right, the browser back/forward gesture activates while trying to pan around the page. I found the following CSS prevents this:
html, body { overscroll-behavior: contain; }
I tested this by adding the lines to the html and body sections in the devtool inspector, but I'm not sure where to add this in the app's code.