From ee3a2365fe49cd3cfc8c6645e0cd4235708dbf85 Mon Sep 17 00:00:00 2001 From: horsefacts Date: Thu, 5 Dec 2024 18:47:01 -0500 Subject: [PATCH] hide scrollbars --- src/app/globals.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 0d14cc8..0aa105e 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -19,3 +19,12 @@ body { background: var(--background); font-family: 'Inter', Helvetica, Arial, sans-serif; } + +* { + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE and Edge */ +} + +*::-webkit-scrollbar { + display: none; +}