Search code examples
ionic-frameworkionic2ionic3ionic-view

how to remove the scroll bar/stick indicator?


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;
} 

Solution

  • try this:

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

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