From 34964eb1cc5e6ed99126fc69644cd994d0c2fc7b Mon Sep 17 00:00:00 2001 From: Andrew Trieu Date: Tue, 19 Nov 2024 12:15:27 +0200 Subject: [PATCH] feat: Hide scrollbar by setting width and height to 0 in global styles --- tasker-client/src/app/globals.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasker-client/src/app/globals.css b/tasker-client/src/app/globals.css index ab91f01..ee10c02 100644 --- a/tasker-client/src/app/globals.css +++ b/tasker-client/src/app/globals.css @@ -18,3 +18,8 @@ body, @apply bg-white; @apply dark:bg-black; } + +::-webkit-scrollbar { + width: 0px; + height: 0px; +}