react-nice-dates
react-nice-dates copied to clipboard
Popup calendar not adjusting on mobile
Hi there
I'm seeing the following when on a mobile view:
Where the pop up calendar isn't scaled when on a mobile. Is there anything special i need to do?
The demo site works correctly...
Any advice would be appreciated...thank you for this library..just what i was looking for.
I ran into the same issue this morning and I can't find out where the problem is. Anyway while we're waiting from a response from @hernansartorio I share with you my temporary solution:
.nice-dates-popover {
right: 10px;
left: 10px;
width: auto
}
Hope it helps
Thanks @kasugaicrow , I'll leave this issue open for @hernansartorio
Because of the absolute-ness of the DatePicker, you need to wrap it with a positioned div. <div style={{position: relative;}}>... worked for me.