From 1ced2c64a5e8aa031b40c93e9c68a313bc2e446e Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 17 Aug 2020 08:33:59 -0400 Subject: [PATCH] Hide scrollbar in webkit browsers --- src/App.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 587adb3..b699601 100644 --- a/src/App.js +++ b/src/App.js @@ -29,12 +29,19 @@ function App(){ width: "100vw", height: "100vh", transition: transitionWidth, + "&::-webkit-scrollbar": { + width: "0 !important" + } }, "rightCol": { overflow: "auto", width: "0", height: "100vh", - transition: transitionWidth + transition: transitionWidth, + scrollbarWidth: 0, + "&::-webkit-scrollbar": { + width: "0 !important" + } }, "rightColShift": { overflowY: "auto",