Skip to content

Commit

Permalink
Design: 메인페이지 css 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suehub committed Jan 4, 2024
1 parent afe58bc commit 4d9794a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Tours/CreateTripButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { PlusIcon } from '@components/common/icons/Icons';

const CreateTripButton = () => {
return (
<div className="sticky bottom-20 z-[100] ml-auto h-[51px] w-[51px] cursor-pointer">
<div className="sticky bottom-20 z-[100] ml-auto mr-[10px] h-[51px] w-[51px] cursor-pointer">
<PlusIcon size={51} color="white" />
</div>
);
Expand Down
10 changes: 7 additions & 3 deletions src/components/common/nav/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,25 @@ const Nav = () => {
<div className="flex justify-center">
<HomeIcon fill={isActive('/') ? 'currentColor' : 'none'} />
</div>
<p className="caption2 mt-[3px] text-center"></p>
<p className="caption2 mt-[3px] pr-[1px] 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="caption2 mt-[3px] pr-[1px] 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="caption2 mt-[3px] pl-[1px] text-center text-xs/[11px]">
</p>
</div>
<div
onClick={() => navigate('/')}
Expand Down

0 comments on commit 4d9794a

Please sign in to comment.