Skip to content

Commit

Permalink
fix: 여백 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Doeunnkimm committed Aug 25, 2024
1 parent d06c075 commit 052e8ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use client';

import { TextButton } from '@sds/components';
import { size } from '@sds/theme';
import Link from 'next/link';
import { HTMLAttributes } from 'react';

Expand All @@ -27,7 +28,7 @@ export const ProfileContainer = (props: ProfileContainerProps) => {
location={data?.location}
job={data?.job}
/>
<Link href={`/${meetingId}/user/modify`}>
<Link href={`/${meetingId}/user/modify`} style={{ marginTop: size.xs }}>
<TextButton variant="arrow">기본 정보 수정하러 가기</TextButton>
</Link>
</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ export const profileRootCss = css({
alignItems: 'center',
padding: `${size['xs']} ${size['2xs']} ${size['md']}`,
backgroundColor: colors.white,

'& > * + *': {
marginTop: size['xs'],
},
});

export const checkboxAndTriggerCss = css({
Expand Down

0 comments on commit 052e8ac

Please sign in to comment.