From 58a2dbb42ac52887f3c03e2b069970e686d72333 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sun, 4 Sep 2022 11:33:08 +1000 Subject: [PATCH] Update overscroll CSS --- website/docs/guides/overscroll.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/guides/overscroll.mdx b/website/docs/guides/overscroll.mdx index 1383b2b58..cb3cae4a4 100644 --- a/website/docs/guides/overscroll.mdx +++ b/website/docs/guides/overscroll.mdx @@ -4,7 +4,7 @@ get when you scroll beyond a page's content boundaries. This is common in mobile apps. This can be disabled using CSS: ```css -body { - overscroll-behavior: none; +html { + overflow: hidden; } ```