nathanreyes / v-calendar

An elegant calendar and datepicker plugin for Vue.
https://vcalendar.io
MIT License
4.32k stars 840 forks source link

Calendar display only in-month days #1462

Open cchacholiades opened 3 months ago

cchacholiades commented 3 months ago

I'm attempting to make the calendar show only the days within the current month. I attempted to achieve this using CSS:

.is-not-in-month {
    display: none;
}

While the above code does hide the is-not-in-month cells, it unfortunately shifts the remaining days, causing them to display under the wrong day.

I am using v2 of the library, any ideas?