html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0px; /* remove scrollbar space /
background: transparent; / optional: just make scrollbar invisible /
}
/ optional: show position indicator in red */
::-webkit-scrollbar-thumb {
background: #FF0000;
}
overflow: auto;
"&::-webkit-scrollbar": {
display: "none",
width: 0
},
"-ms-oveflow-style": "none" /*IE and Edge*/,
"scrollbar-width": "none" /*Firefox*/,
.myClass {
/*auto will remove and add the scroll bar as needed*/
overflow: auto;
}