Skip to content

Commit

Permalink
fix(frontend/calendar): highlight today && highlight hovered days in …
Browse files Browse the repository at this point in the history
…light mode
  • Loading branch information
c0rydoras committed Jan 8, 2025
1 parent d04e192 commit c533616
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/app/styles/components/power-calendar.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,19 @@
}

.ember-power-calendar-day--current-month {
@apply bg-background-muted;
@apply bg-secondary/20;
}

.ember-power-calendar-day--today {
@apply bg-secondary/50;
}

.ember-power-calendar-day--selected {
@apply bg-primary text-foreground-primary;
}

.ember-power-calendar-day--current-month:not([disabled]) {
@apply hover:bg-background-secondary/50;
@apply hover:bg-secondary-light/55;
}

.ember-power-calendar-day--other-month:not([disabled]):hover {
Expand Down

0 comments on commit c533616

Please sign in to comment.