Hi! I have been having trouble hiding the scrollbars (or customizing them in any way).
Usually something like this:
.container {
-ms-overflow-style: none; /* Internet Explorer 10+ */
scrollbar-width: none; /* Firefox */
}
.container::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}
Would do the trick but in custom CSS and in all component settings I cannot find a way to hide the scroll bar whilst still being able to scroll. On tablet it’s always nice to have a thin scrollbar on the side as well so it would be great to be able to customise the scroll bar!
Thank you in advance for your help