Skip to content

Commit

Permalink
feat: header height값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
moong23 committed Sep 8, 2024
1 parent 2dfc513 commit 71398fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/main/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function MainPageLayout({
children: React.ReactNode;
}>) {
return (
<main className='flex flex-col items-center bg-white'>
<main className='flex flex-col items-center gap-4 bg-white'>
<MainPageHeader />
<div className='flex flex-col items-center w-full'>
<Suspense fallback={<div></div>}>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Header/MainPageHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import Image from 'next/image';

const MainPageHeader = () => {
return (
<div className={`py-8 justify-between flex items-center w-content bg-white`}>
<div className={`justify-between flex h-16 items-center w-content bg-white`}>
<Link href='/main'>
<Image src={ServiceIcon} alt='ServiceIcon' width={153} height={64} />
</Link>

<Link href='/mypage' className='flex flex-row items-center cursor-pointer gap-1 text-blue'>
<Link href='/mypage' className='flex flex-row items-center gap-1 cursor-pointer text-blue'>
<HomeIcon width={24} fill='#168FD0' />
<span className='text-body3'>마이 페이지</span>
</Link>
Expand Down

0 comments on commit 71398fc

Please sign in to comment.