Hello,
Nice component, it works very well. However at smaller breakpoints the component itself seems to drop below other inputs? Possibly a z-index issue? See attached.
This is a fairly vanilla Bootstrap 3 form layout.
Not sure where to start to debug it. Any suggestions?
react 16.2.0
react-date-picker 6.5.2
Thanks!
John

Hey!
It seems like you have some elements that are, just like the calendar in React-Date-Picker, positioned using position: relative or absolute.
There can be two cases:
z-index value set. In this case, elements that come after calendar in HTML structure will cover it. Apply z-index: 1 to .react-date-picker__calendar.z-index value set and because of that calendar is covered.z-index value of elements covering the calendar. Apply z-index with a value higher than in elements covering to .react-date-picker__calendar.Will check ASAP. Ran out of time but will be back on Wednesday.
No problem. I'll be happy to reopen if you'd still need help!
@wojtekmaj: setting z-index (option #1 above) worked fine - thanks!