Skip to content

Commit

Permalink
πŸ’„ Style(#47): Root Layout h-full μŠ€νƒ€μΌ 속성 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
sscoderati committed Nov 1, 2023
1 parent 4940905 commit d360f4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ const RootLayout = ({ children }: { children: React.ReactNode }) => {
className={inter.className}
>
<body className="h-screen">
<Theme className="h-full">
<Theme>
<div
className={cn(
`max-mobile:w-9/10 w-7/8 mx-auto flex h-full flex-col items-center pb-30`,
`max-mobile:w-9/10 w-7/8 mx-auto flex flex-col items-center pb-30`,
)}
>
<AppBar isLogin={false} />
Expand Down

0 comments on commit d360f4e

Please sign in to comment.