Is there a way to increase the dimensions of the DatePicker?
I unsuccessfully tried something like:
<DatePicker style={{height: '600px'}}
In my app. the DatePicker appears smaller than in your examples
Thanks
The issue mentioned updates the sizes of the font inside the calender. However the question is about how to increase the length/height of the input box itself
You want to do something like this in your css file
.react-datepicker__input-container {
width: inherit;
}
.react-datepicker-wrapper {
width: 100%;
}
Most helpful comment
You want to do something like this in your css file