From 2f408c7ea8115dd8b70ed3728ec93250938f109c Mon Sep 17 00:00:00 2001 From: JohnMark Sill Date: Wed, 12 Jan 2022 23:08:50 -0600 Subject: [PATCH] feat: add class to hide scrollbar as tailwind doesn't have an option --- web/src/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web/src/index.css b/web/src/index.css index b7b93a69e..dfb1f165e 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -39,6 +39,15 @@ Could not find a proper tailwind css. max-width: 70%; } +.hide-scroll::-webkit-scrollbar { + display: none; +} + +.hide-scroll { + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ +} + /* Hide some videoplayer controls on mobile devices to align the video player and bottom control bar properly.