Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions src/components/common/Gnb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ import UserDefaultImg from './UserDefaultImg';

function Gnb() {
return (
//inset-x-0 -> x축:left,right둘 다 0
<header className='z-50 fixed top-0 inset-x-0 mx-auto px-[16px] md:px-[20px] xl:px-0 max-w-[1140px] min-w-[343px]'>
<nav className='flex justify-between items-center bg-black w-full h-[50px] md:h-[70px] rounded-[12px] md:rounded-[16px] mt-[16px] md:mt-[24px] px-[20px] md:px-[60px]'>
<Logo />
<AuthMenu />
</nav>
</header>
<div className='z-50 fixed top-0 inset-x-0 bg-white/70 backdrop-blur-md'>
{/* ㄴ백드롭 필터 적용*/}
Comment on lines +13 to +14
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GNB 상단 블러처리 적용 확인했습니다

<header className='mx-auto px-[16px] md:px-[20px] xl:px-0 max-w-[1140px] min-w-[343px]'>
<nav className='flex justify-between items-center bg-black w-full h-[50px] md:h-[70px] rounded-[12px] md:rounded-[16px] mt-[16px] md:mt-[24px] px-[20px] md:px-[60px]'>
<Logo />
<AuthMenu />
</nav>
</header>
</div>
);
}

Expand Down