From 154e0b599a03b925a4ba9409533ed93a36d1af6d Mon Sep 17 00:00:00 2001 From: Greg Sanderson Date: Wed, 14 Feb 2024 17:22:11 +0000 Subject: [PATCH] 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. --- apps/www/src/lib/registry/default/ui/calendar/Calendar.vue | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/www/src/lib/registry/default/ui/calendar/Calendar.vue b/apps/www/src/lib/registry/default/ui/calendar/Calendar.vue index e44796a1..3be51c7b 100644 --- a/apps/www/src/lib/registry/default/ui/calendar/Calendar.vue +++ b/apps/www/src/lib/registry/default/ui/calendar/Calendar.vue @@ -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; }