Skip to content

Commit

Permalink
feat: 1440px 이상 시 모바일 화면으로 렌더링
Browse files Browse the repository at this point in the history
  • Loading branch information
BangDori committed May 6, 2024
1 parent 3be2896 commit 4320616
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/app/styles/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,17 @@ button {
}

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

@media (min-width: 1440px) {
background: #eff2f9;
margin: 0 auto;
width: 320px;
height: 568px;

#root {
background: #fff;
}
}
}

0 comments on commit 4320616

Please sign in to comment.