Ionic Serve: Remove Scroll Bar

How do I hide this bar from Ionic Serve? It doesn’t appear on the app once I run it off my phone.

image

Ok I just found the solution:

scroll-content {
    overflow-y: hidden;
}

I really appreciated your answer, but I have another question.
Your codes cannot make scroll bar invisible when the content is long enough to scroll.
I want to scroll my content, but I don’t want the scroll bar to be visible.

try:

scroll-content {
    overflow-y:auto;
}

-Dharsan

its removing my all content of the page