cac3e116a3
https://github.com/twentyhq/twenty/issues/6950 Add new Settings Card for Config Data Type and accounts Settings Before: <img width="707" alt="Screenshot 2024-09-11 at 17 43 16" src="https://github.com/user-attachments/assets/63ff9373-fa86-4b22-8e8b-21483039c3be"> After: <img width="755" alt="Screenshot 2024-09-17 at 14 15 18" src="https://github.com/user-attachments/assets/213c24a1-dc1c-4ffb-8890-7c1f63ed376c"> <img width="755" alt="Screenshot 2024-09-17 at 14 15 38" src="https://github.com/user-attachments/assets/0fc12d19-b92a-493d-80fa-0064cf491fbc">
12 lines
405 B
TypeScript
12 lines
405 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const StyledRectangleIllustrationIcon = styled('div')`
|
|
background-color: ${({ theme }) => theme.background.primary};
|
|
border: 0.75px solid ${({ theme }) => theme.border.color.medium};
|
|
border-radius: ${({ theme }) => theme.border.radius.sm};
|
|
display: flex;
|
|
justify-content: center;
|
|
`;
|
|
|
|
export const IllustrationIconWrapper = StyledRectangleIllustrationIcon;
|