hide default scrollbar using css
/* Scroll Bar */
* {
scrollbar-width: thin;
scrollbar-color: #00000033 #00000018;
}
*::-webkit-scrollbar {
width: 7px;
height: 7px;
border-radius: 50px;
transition: all ease 0.5s;
}
*::-webkit-scrollbar-track {
background: #00000018;
border-radius: 50px;
}
*::-webkit-scrollbar-thumb {
background: #0000;
border-radius: 50px;
}
*:hover::-webkit-scrollbar-thumb {
background: #00000033;
}