hypeserver / react-date-range

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

When will the component be mobile friendly #561

Open AbdullahAnsarii opened 2 years ago

AbdullahAnsarii commented 2 years ago

Subject of the issue

The current component is not responsive, is there any other solution except overriding component's CSS to make it responsive?

Environment

Package Version: 1.4.0 React version: 17.0.2 Node version: 16.13.0 Browser: Chrome

wibed commented 1 year ago

remove static ranges and input ranges additionally overwriting the respecive class with a display: none

for reference

<DateRangePicker
      staticRanges={[]}
      inputRanges={[]}
/>
.rdrDefinedRangesWrapper {
  display: none;
}