Skip to content

Commit

Permalink
fix : 노룩배포의 폐해
Browse files Browse the repository at this point in the history
  • Loading branch information
9yujin committed Nov 10, 2024
1 parent e724703 commit 3f6aaa2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/ticket/src/components/shared/Layout/MobileHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import Hamburger from 'hamburger-react';
import { useRouter } from 'next/router';
import { PropsWithChildren, useRef, useState } from 'react';
import { useRecoilValue } from 'recoil';
import Media from '../Media';

const MobileHeader = ({ children }: PropsWithChildren) => {
const { asPath } = useRouter();
Expand Down Expand Up @@ -62,7 +63,9 @@ const MobileHeader = ({ children }: PropsWithChildren) => {
{children}
</div>
</div>
<Spacing size={72} />
<Media.Mobile>
<Spacing size={72} />
</Media.Mobile>
</>
);
};
Expand Down

0 comments on commit 3f6aaa2

Please sign in to comment.