9f6a6c3282
- add sync email onboarding step - refactor calendar and email visibility enums - add a new table `keyValuePair` in `core` schema - add a new resolved boolean field `skipSyncEmail` in current user https://github.com/twentyhq/twenty/assets/29927851/de791475-5bfe-47f9-8e90-76c349fba56f
13 lines
458 B
TypeScript
13 lines
458 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const StyledCard = styled.div<{ fullWidth?: boolean; rounded?: boolean }>`
|
|
border: 1px solid ${({ theme }) => theme.border.color.medium};
|
|
border-radius: ${({ theme, rounded }) =>
|
|
rounded ? theme.border.radius.md : theme.border.radius.sm};
|
|
color: ${({ theme }) => theme.font.color.secondary};
|
|
overflow: hidden;
|
|
width: ${({ fullWidth }) => (fullWidth ? '100%' : 'auto')};
|
|
`;
|
|
|
|
export { StyledCard as Card };
|