I am currently using a calendar created with the CLNDR plugin, which is quite impressive as it leverages underscore.js and moment.js. While the calendar functions perfectly, I am facing an issue in making it responsive for screens of varying sizes. Despite my attempts, only the day headers are responsive while the actual days display inaccurate information.
For reference, you can view the fiddle here.
Below is the snippet of code that I tried to make responsive, leading to the above-described error:
#mini-clndr .clndr .days-container .days .headers .day-header {
width: 14%;
display: inline-block;
text-align: center;
color: white;
}
Your assistance in resolving this matter would be greatly appreciated.