Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Apr 21, 2024
1 parent ad91595 commit 5769d6b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,9 @@ class="grid grid-cols-[repeat(7,minmax(theme(spacing.7),1fr))] gap-1"
focusedDate.date() !== day &&
! dayIsDisabled(day),
'bg-gray-50 dark:bg-white/5':
focusedDate.date() === day && ! dayIsSelected(day) && ! dayIsDisabled(day),
focusedDate.date() === day &&
! dayIsSelected(day) &&
! dayIsDisabled(day),
'text-primary-600 bg-gray-50 dark:bg-white/5 dark:text-primary-400':
dayIsSelected(day),
'pointer-events-none': dayIsDisabled(day),
Expand Down

0 comments on commit 5769d6b

Please sign in to comment.