I'm already using
-webkit-scrollbar{
display:none;
}
on my webpage, and it works pretty well on desktop.
but when i'm checking on Chrome devtools - for mobile devices stil exists scrollbar
it didn't appear in nomally, but when I'm scrolling the page, thin and gray scroll bar comming up.
Could I control this problem?
I'm also trying @media query with (max-width:768px) like
@media screen and (max-width:768px){
::-webkit-scrollbar{
display:none;
}
but it is not working.