From 5edff4cb37cbbdfb390710731e2d2571065e44d0 Mon Sep 17 00:00:00 2001 From: givenby Date: Wed, 17 Jul 2024 23:45:58 +0530 Subject: [PATCH] added dark background to calendar dropdown --- frontend/src/_styles/theme.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/_styles/theme.scss b/frontend/src/_styles/theme.scss index 2849d173dd..93f6e166f7 100644 --- a/frontend/src/_styles/theme.scss +++ b/frontend/src/_styles/theme.scss @@ -6767,11 +6767,15 @@ tbody { .react-datepicker__month-select, .react-datepicker__year-select { color: white; + } .react-datepicker__month-select, .react-datepicker__year-select { background-color: transparent; + option{ + background-color: #232e3c; + } } }