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:
@ -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`
|
||||
|
||||
Reference in New Issue
Block a user