Skip to content

Commit

Permalink
#29 style: navbar ui 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leejin-rho committed Jul 2, 2024
1 parent 69efea3 commit c2026f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const NavBar = () => {

return (
<>
<div className="w-full min-h-[4rem]" />
<div
className="flex flex-basis h-[4rem] w-full fixed inset-x-0 bottom-0 "
style={{
Expand Down
2 changes: 1 addition & 1 deletion pages/calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const CalendarPage: NextPage = () => {
toggleModal={() => setIsModal(false)}
/>
) : null}
<div className="flex flex-col w-full h-screen pb-[4rem]">
<div className="flex flex-col w-full h-screen">
<HeadFunction title="캘린더" />
<div className="flex flex-col flex-grow pt-[1.5rem] items-center overflow-auto scrollbar-hide">
<div className="h-fit w-full flex flex-row justify-start items-end px-[1rem] gap-3">
Expand Down
5 changes: 4 additions & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ const Home: NextPage = () => {
};

return (
<FlexBox direction="col" className="w-full h-full justify-between">
<FlexBox
direction="col"
className="w-full h-full justify-between overflow-auto scrollbar-hide"
>
<HomeChallenge onNotify={notify} />
<NavBar />
<ToastContainer
Expand Down

0 comments on commit c2026f4

Please sign in to comment.