Skip to content

Commit

Permalink
fix: layout에 min-h 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginieee committed Aug 14, 2024
1 parent 0b8e674 commit bb214d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(route)/(user)/(with-layout)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Userlayout = ({ children }: Props) => {
return (
<div>
<UserNavBarContainer />
<main className="mb-20 flex-1 overflow-y-auto">{children}</main>
<main className="mb-20 min-h-screen flex-1">{children}</main>
<UserFooterContainer />
</div>
);
Expand Down

0 comments on commit bb214d6

Please sign in to comment.