keep pull to refresh for safari (#1168)

This commit is contained in:
Athou
2024-06-12 13:04:13 +02:00
parent f6b3114a91
commit cd86947e64
6 changed files with 58 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
import { Helmet } from "react-helmet"
export const DisablePullToRefresh = () => {
return (
<Helmet>
<style type="text/css">
{`
html, body {
overscroll-behavior: none;
}
`}
</style>
</Helmet>
)
}