Redesign DatePicker (#108)

This commit is contained in:
Charles Bochet
2023-05-06 18:13:16 +02:00
committed by GitHub
parent 41c46c36ed
commit 760a49c5e3
3 changed files with 183 additions and 7 deletions

View File

@ -27,7 +27,7 @@ const lightThemeSpecific = {
purpleBackground: '#e0e0ff',
yellowBackground: '#fff2e7',
secondaryBackgroundSmallTransparency: 'rgba(252, 252, 252, 0.8)',
secondaryBackgroundSmallTransparency: 'rgba(252, 252, 252, 0.97)',
primaryBorder: 'rgba(0, 0, 0, 0.08)',
@ -59,7 +59,7 @@ const darkThemeSpecific: typeof lightThemeSpecific = {
purpleBackground: '#1111b7',
yellowBackground: '#cc660a',
secondaryBackgroundSmallTransparency: 'rgba(23, 23, 23, 0.8)',
secondaryBackgroundSmallTransparency: 'rgba(23, 23, 23, 0.97)',
primaryBorder: 'rgba(255, 255, 255, 0.08)',
@ -83,7 +83,6 @@ const darkThemeSpecific: typeof lightThemeSpecific = {
export const modalBackground = (props: any) =>
css`
backdrop-filter: blur(20px);
background: ${props.theme.secondaryBackgroundSmallTransparency};
`;