Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
harshit078 committed Oct 7, 2024
1 parent 1917947 commit a584799
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import styled from '@emotion/styled';
import { H2Title, IconCalendarEvent, IconMailCog } from 'twenty-ui';
import {
H2Title,
IconCalendarEvent,
IconMailCog,
MOBILE_VIEWPORT,
} from 'twenty-ui';

import { SettingsCard } from '@/settings/components/SettingsCard';
import { getSettingsPagePath } from '@/settings/utils/getSettingsPagePath';
Expand All @@ -12,7 +17,9 @@ const StyledCardsContainer = styled.div`
display: flex;
gap: ${({ theme }) => theme.spacing(4)};
margin-top: ${({ theme }) => theme.spacing(6)};
flex-direction: column;
@media (max-width: ${MOBILE_VIEWPORT}) {
flex-direction: column;
}
`;

export const SettingsAccountsSettingsSection = () => {
Expand Down

0 comments on commit a584799

Please sign in to comment.