Skip to content

Commit

Permalink
fix: 모바일 화면 높이 버그 수정 (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
chasj0326 authored Dec 2, 2023
1 parent 1a52b68 commit 61f3bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const App = () => {
<>
<CommonMeta pageName={pageName} />
<div
className={clsx('h-screen w-screen', {
className={clsx('h-full w-screen min-[1024px]:h-screen', {
'dark min-[1024px]:bg-dark-main': theme === 'dark',
'min-[1024px]:bg-light-main': theme !== 'dark'
})}
Expand Down

0 comments on commit 61f3bcf

Please sign in to comment.