disable pull-to-refresh on mobile as it messes with vertical scrolling

This commit is contained in:
Athou
2023-05-27 19:54:02 +02:00
parent 105ff46c01
commit b5e5989604
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
html, body {
/* disable pull-to-refresh on mobile as it messes with vertical scrolling */
overscroll-behavior: none;
}