From d8ca953000b06533d24a388564eebfe1e003804c Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 17 Dec 2022 20:10:19 -0500 Subject: [PATCH] Fix x scrollbar on mobile --- src/common/common.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/common/common.css b/src/common/common.css index 3934b93..aea40a8 100644 --- a/src/common/common.css +++ b/src/common/common.css @@ -65,4 +65,16 @@ textarea { html { scroll-behavior: smooth; + width: 100vw; } + +@media only screen and (max-width: 768px){ + body { + overflow-x: hidden; + } + html { + overflow-x: hidden; + } + +} +