feat: add Synchronization calendar settings (#4111)

* feat: add Calendar Settings section to Settings/Accounts/Calendars page

Closes #4060

* refactor: rename components

* feat: add Synchronization calendar settings

Closes #4066
This commit is contained in:
Thaïs
2024-02-21 13:23:06 -03:00
committed by GitHub
parent 5a8a9cd029
commit ee66188656
6 changed files with 32 additions and 23 deletions

View File

@ -0,0 +1,17 @@
import styled from '@emotion/styled';
const StyledCardMedia = styled.div`
align-items: center;
border: 2px solid ${({ theme }) => theme.border.color.medium};
border-radius: ${({ theme }) => theme.border.radius.sm};
color: ${({ theme }) => theme.font.color.light};
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(0.5)};
height: ${({ theme }) => theme.spacing(8)};
justify-content: center;
padding: ${({ theme }) => theme.spacing(0.5)};
width: ${({ theme }) => theme.spacing(6)};
`;
export { StyledCardMedia as SettingsAccountsCardMedia };