I just found out how to hide the scrollbar in Google Chrome, I did it with this code:
::-webkit-scrollbar { display: none; }
The only p
I got it working for me in ReactJS using create-react-app by putting this in my App.css:
create-react-app
App.css
@-moz-document url-prefix() { html, body { scrollbar-width: none; } }
Also, the body element has overflow: auto
body
overflow: auto