From f0dbfbd0d563b69a9abfe21d38cba426dc29aba7 Mon Sep 17 00:00:00 2001
From: Gabe Kangas <gabek@real-ity.com>
Date: Thu, 4 May 2023 10:52:47 -0700
Subject: [PATCH] fix(ui): re-hide scroll bars. closes #2981

---
 web/styles/globals.scss | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/web/styles/globals.scss b/web/styles/globals.scss
index 9bf19d943..12c8b0ea2 100644
--- a/web/styles/globals.scss
+++ b/web/styles/globals.scss
@@ -117,3 +117,11 @@ body {
   margin-left: 5px;
   margin-right: 5px;
 }
+
+body::-webkit-scrollbar {
+  display: none;
+}
+
+body::-webkit-scrollbar-thumb {
+  display: none;
+}