How to disable scrollbars on ion-content in ionic 4?

I want to get rid of the scrollbars in an ion-content but i dont see any way how to do it since it’s a div in the #shadow-root which cannot be styled from outside.
Also I didn’t find any css4 variable that would control the scrolling behaviour like ‘overflow’ f.e.

Thanks for any help

tlp

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

add this line in your theme/variables.scss file

This works

.scroll-y, .inner-scroll { display: none; }