diff --git a/styles/globals.css b/styles/globals.css index bd6213e..1eed1a3 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,3 +1,14 @@ @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; + +/* hide scrollbar but allow scrolling */ +body { + -ms-overflow-style: none; /* for Internet Explorer, Edge */ + scrollbar-width: none; /* for Firefox */ + overflow-y: scroll; +} + +body::-webkit-scrollbar { + display: none; /* for Chrome, Safari, and Opera */ +} \ No newline at end of file