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 used this and it worked. https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-width
html { scrollbar-width: none; }
Note: User Agents must apply any scrollbar-width value set on the root element to the viewport.