Replies: 1 comment 1 reply
|
That 5% width reduction is hardcoded in the VCalendar event rendering — it's there so overlapping events don't completely cover each other. There's no prop to disable it. You can override it with CSS though: .v-calendar .v-calendar-day__event {
width: 100% !important;
margin-right: 0 !important;
}If you're using scoped styles in a Vue SFC, you'll need <style scoped>
:deep(.v-calendar-day__event) {
width: 100% !important;
margin-right: 0 !important;
}
</style>Just keep in mind that if you have overlapping events on the same time slot, they'll stack on top of each other instead of sitting side by side. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello, is there an option to make VCalendar events stretch to the edge of the cell and fill the remaining space?

I noticed that their width is systematically reduced by 5%.
All reactions