Skip to content

Commit

Permalink
Hide scrollbar in webkit browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Aug 17, 2020
1 parent ff76bf2 commit 1ced2c6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1ced2c6

Please sign in to comment.