it is to small, how to make it bigger (Month Container) ?

Thanks
i was able to make it larger by modifying the css styles. For example
.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
width: 2.5rem;
line-height: 2.5rem;
font-size: 12px;
}
I had to change the font-size associated with my html, body rule:
html, body {
font-size: 14px;
}
I assume this is because react-datepicker uses rem for font sizes.
doesn't works well for me with changes from https://github.com/Hacker0x01/react-datepicker/issues/1363#issuecomment-393509873 and https://github.com/Hacker0x01/react-datepicker/issues/1363#issuecomment-393826761
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
i was able to make it larger by modifying the css styles. For example