Files
twenty/packages/twenty-front/src/modules/settings/accounts/components/SettingsAccountsInboxSettingsCardMedia.tsx
Thaïs 5bbd1a7c49 feat: add Settings/Accounts/Emails/Inbox Settings synchronization sec… (#3071)
* feat: add Settings/Accounts/Emails/Inbox Settings page

Closes #3013

* feat: add Settings/Accounts/Emails/Inbox Settings synchronization section

Closes #3014

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
2023-12-20 15:59:02 +01:00

17 lines
557 B
TypeScript

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.xs};
color: ${({ theme }) => theme.font.color.light};
display: flex;
flex-direction: column;
height: ${({ theme }) => theme.spacing(8)};
justify-content: center;
padding: ${({ theme }) => theme.spacing(0.5)};
width: ${({ theme }) => theme.spacing(6)};
`;
export { StyledCardMedia as SettingsAccountsInboxSettingsCardMedia };