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;
}

View File

@@ -1,11 +1,12 @@
import "@fontsource/open-sans"
import { App } from "App"
import { store } from "app/store"
import dayjs from "dayjs"
import relativeTime from "dayjs/plugin/relativeTime"
import "main.css"
import "react-contexify/ReactContexify.css"
import ReactDOM from "react-dom/client"
import { Provider } from "react-redux"
import { App } from "./App"
dayjs.extend(relativeTime)