how to remove the scroll bar/stick indicator?

433 views Asked by At

How to remove/hide the scroll bar indicator (vertical stick that's shown when scrolling) in ionic 3

I have tried: not sure what the below code does

.scroll-content {
    overflow-y: auto !important;
} 
1

There are 1 answers

1
Ali Mustafa On BEST ANSWER

try this:

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar is only available in WebKit-based browsers (e.g., Google Chrome).