Fix Dark Mode Colors (#1099)

- fix dark mode colors
This commit is contained in:
brendanlaschke
2023-08-07 19:08:02 +02:00
committed by GitHub
parent de6ebd96c5
commit 029ba25361
6 changed files with 30 additions and 3 deletions

View File

@ -10,6 +10,7 @@ export type StyledCalendarContainerProps = {
};
const StyledInputContainer = styled.div`
color: ${({ theme }) => theme.font.color.primary};
display: flex;
padding: ${({ theme }) => theme.spacing(2)};

View File

@ -48,6 +48,7 @@ const StyledContainer = styled.div`
& .react-datepicker__header__dropdown {
display: flex;
color: ${({ theme }) => theme.font.color.primary};
margin-left: ${({ theme }) => theme.spacing(1)};
margin-bottom: ${({ theme }) => theme.spacing(1)};
}