Skip to content

Commit

Permalink
refactor : 수정된 디자인 반영 (80 > 64)
Browse files Browse the repository at this point in the history
  • Loading branch information
guesung committed Aug 24, 2023
1 parent 7321cfd commit 6428268
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(Main)/talk/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Spacing } from '@/components/Spacing';
export default function Talk() {
return (
<div>
<Spacing size={80} />
<Spacing size={64} />
<TitleSection />
<TalkSection />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Modal/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface PopupProps {
export default function Popup({ children }: StrictPropsWithChildren<PopupProps>) {
return (
<ModalWrapper>
<section className="flex w-300 flex-col items-center rounded-16 bg-white px-16 py-12">
<section className="flex w-300 flex-col items-center rounded-16 bg-white px-16 py-12">
{children}
</section>
</ModalWrapper>
Expand Down

0 comments on commit 6428268

Please sign in to comment.