Skip to content

Commit

Permalink
Design: Nav css 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suehub committed Jan 5, 2024
1 parent 2ee51d3 commit bad6eb3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/common/nav/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,29 @@ const Nav = () => {
<div className="flex justify-center">
<HomeIcon fill={isActive('/') ? 'currentColor' : 'none'} />
</div>
<p className="caption2 mt-[3px] text-center"></p>
<p className="caption1 mt-[3px] text-center"></p>
</div>
<div
onClick={() => navigate('/')}
className="cursor-pointer flex-col items-center justify-center px-2">
<CalendarIcon />
<p className="caption2 mt-[3px] text-center text-xs/[11px]">일정</p>
<p className="caption1 mt-[3px] text-center text-xs/[11px]">일정</p>
</div>
<div
onClick={() => navigate('/')}
className="cursor-pointer flex-col items-center justify-center px-2">
<div className="flex justify-center">
<HeartIcon />
</div>
<p className="caption2 mt-[3px] text-center text-xs/[11px]"></p>
<p className="caption1 mt-[3px] text-center text-xs/[11px]"></p>
</div>
<div
onClick={() => navigate('/signin')}
className="cursor-pointer flex-col items-center justify-center px-1">
<div className="flex justify-center">
<UserIcon />
</div>
<p className="caption2 mt-[3px] text-center">내정보</p>
<p className="caption1 mt-[3px] text-center">내정보</p>
</div>
</div>
</nav>
Expand Down

0 comments on commit bad6eb3

Please sign in to comment.