The code I am working with is shown below:
<div class="container">
<div class="col-md-3 calendar">
</div>
<div class="col-md-9">
<button></button>
(more buttons...)
</div>
</div>
My CSS for the calendar is:
.calendar { min-width: 447px; }
Currently, the calendar div has a minimum width of 400px. The issue arises on smaller screens where the second column overlaps with the calendar column. How can I prevent this overlap when the screen size is less than 1024px?