From 8630552292be761c8611b319f66892793260dedf Mon Sep 17 00:00:00 2001 From: Arthur <110528300+c0rydoras@users.noreply.github.com> Date: Wed, 8 Jan 2025 11:13:19 +0100 Subject: [PATCH] fix(frontend/calendar): highlight today && highlight hovered days in light mode (#566) --- frontend/app/styles/components/power-calendar.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/app/styles/components/power-calendar.css b/frontend/app/styles/components/power-calendar.css index 5a15c7400..3c352fdee 100644 --- a/frontend/app/styles/components/power-calendar.css +++ b/frontend/app/styles/components/power-calendar.css @@ -28,7 +28,11 @@ } .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 { @@ -36,7 +40,7 @@ } .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 {