react-date-range icon indicating copy to clipboard operation
react-date-range copied to clipboard

When will the component be mobile friendly

Open AbdullahAnsarii opened this issue 3 years ago • 1 comments

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

AbdullahAnsarii avatar Mar 04 '22 06:03 AbdullahAnsarii

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

for reference

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

wibed avatar Dec 07 '22 10:12 wibed