hypeserver / react-date-range

A React component for choosing dates and date ranges.
MIT License
2.59k stars 678 forks source link

Is scrolling possible without scrollbar? #582

Open micamend opened 2 years ago

micamend commented 2 years ago

I set scroll={{ enabled: true }} for scrolling but don'T want to show the scrollbars. I tried to set various css classes to ::-webkit-scrollbar { display: none; } resp. to { -ms-overflow-style: none; / IE and Edge / scrollbar-width: none; / Firefox / }

but without any success.

Is there a way to enable scrolling without viewing scrollbar?

Thank you!