From 7755b86152ab968f8134e120025076cfc0e25676 Mon Sep 17 00:00:00 2001 From: aghArdeshir Date: Wed, 21 Aug 2024 00:30:35 +0200 Subject: [PATCH] Calendar buttons look the same on non-white backgrounds --- packages/ui/components/calendar/src/calendarStyle.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ui/components/calendar/src/calendarStyle.js b/packages/ui/components/calendar/src/calendarStyle.js index 695cf324c1..cb4a88428d 100644 --- a/packages/ui/components/calendar/src/calendarStyle.js +++ b/packages/ui/components/calendar/src/calendarStyle.js @@ -28,7 +28,7 @@ export const calendarStyle = css` .calendar__previous-button, .calendar__next-button { - background-color: #fff; + background-color: transparent; border: 0; padding: 0; min-width: 40px; @@ -48,7 +48,7 @@ export const calendarStyle = css` } .calendar__day-button { - background-color: #fff; + background-color: transparent; border: 0; color: black; padding: 0; @@ -88,7 +88,7 @@ export const calendarStyle = css` } .calendar__day-button[aria-disabled='true'] { - background-color: #fff; + background-color: transparent; color: #eee; outline: none; }