Skip to content

Commit

Permalink
fix: Footer UI 깨짐 현상 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
dahyeo-n committed Dec 26, 2024
1 parent 89de078 commit 25cc4e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Layout/AppShell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const AppShell = ({ children }: { children: ReactNode }) => {
dark: 'custom-dark',
}}
>
<div className='h-screen box-border'>
<div className='box-border'>
<Navbar />
<main className='pt-[60px] min-h-screen h-full'>{children}</main>
<Footer />
Expand Down
4 changes: 2 additions & 2 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
}

body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
}

.title-l {
Expand Down

0 comments on commit 25cc4e0

Please sign in to comment.