Update Calendar.vue to fix alignment

The component's CSS adds additional padding which results in Saturday and Sunday not being aligned with the rest of the days.
This commit is contained in:
Greg Sanderson 2024-02-14 17:22:11 +00:00 committed by GitHub
parent 5cc6ef1e9d
commit 154e0b599a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -152,12 +152,6 @@ const vCalendarSlots = computed(() => {
.calendar .vc-weekday {
@apply text-muted-foreground rounded-md w-full font-normal text-[0.8rem];
}
.calendar .vc-weekday-1 {
@apply pr-3;
}
.calendar .vc-weekday-7 {
@apply pl-3;
}
.calendar .vc-weeks {
@apply w-full space-y-2 flex flex-col [&>_div]:grid [&>_div]:grid-cols-7;
}