Skip to content

Commit

Permalink
Fix calendar header loading overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
domhhv committed Feb 8, 2024
1 parent 35f4586 commit 06b27fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/calendar/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ export const StyledHeaderLoadingOverlay = styled(Typography)(({ theme }) => ({
right: 0,
bottom: 0,
margin: 'auto',
backgroundColor: 'rgba(255, 255, 255, 0.8)',
[theme.getColorSchemeSelector('light')]: {
backgroundColor: 'rgba(255, 255, 255, 0.8)',
},
[theme.getColorSchemeSelector('dark')]: {
backgroundColor: 'rgba(12,12,12,0.6)',
},
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
Expand Down

0 comments on commit 06b27fa

Please sign in to comment.