fix: Appearance Settings Cropped Card (#7232)

## Description

- This PR fixes the issue #7198

## Before 
<img width="592" alt="Screenshot 2024-09-24 at 10 58 13 AM"
src="https://github.com/user-attachments/assets/a3ffd558-d00b-4bff-bf1e-d2533fcbc3c1">


## After

<img width="671" alt="Screenshot 2024-09-24 at 10 57 31 AM"
src="https://github.com/user-attachments/assets/1ac97aa7-2d38-422b-bf34-21b832c989da">
This commit is contained in:
Harshit Singh
2024-09-24 18:50:47 +05:30
committed by GitHub
parent fcaa9d9aed
commit c3e79e54b5

View File

@ -4,6 +4,7 @@ import styled from '@emotion/styled';
import { ColorScheme } from '@/workspace-member/types/WorkspaceMember';
import { ColorSchemeCard } from './ColorSchemeCard';
import { MOBILE_VIEWPORT } from 'twenty-ui';
const StyledContainer = styled.div`
display: flex;
@ -11,7 +12,9 @@ const StyledContainer = styled.div`
> * + * {
margin-left: ${({ theme }) => theme.spacing(4)};
}
overflow: scroll;
@media (max-width: ${MOBILE_VIEWPORT}px) {
overflow: scroll;
}
`;
const StyledCardContainer = styled.div`