Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⚡ 페이지 컨테이너, 모달 컴포넌트, 신고하기 모달 컴포넌트의 폴더 위치 조정 #15

Merged
merged 7 commits into from
Nov 5, 2024
27 changes: 9 additions & 18 deletions app/globals.css
BangDori marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -63,64 +63,55 @@ body {
}

@media (max-height: 480px) {
html,
body {
html {
suhwan2004 marked this conversation as resolved.
Show resolved Hide resolved
zoom: 0.95; /* iPhone 3, 4S */
}
}

@media (min-height: 481px) and (max-height: 568px) {
html,
body {
html {
zoom: 1; /* iPhone 5, SE */
}
}

@media (min-height: 569px) and (max-height: 667px) {
html,
body {
html {
zoom: 1.17; /* iPhone 6, 6s, 7, 8 */
}
}

@media (min-height: 668px) and (max-height: 736px) {
html,
body {
html {
zoom: 1.22; /* iPhone 6+, 7+, 8+ */
}
}

@media (min-height: 737px) and (max-height: 812px) {
html,
body {
html {
zoom: 1.25; /* iPhone X, XS */
}
}

@media (min-height: 813px) and (max-height: 852px) {
html,
body {
html {
zoom: 1.27; /* iPhone 12, 13, Pro */
}
}

@media (min-height: 853px) and (max-height: 926px) {
html,
body {
html {
zoom: 1.32; /* iPhone XR, 11 */
}
}

@media (min-height: 927px) and (max-height: 932px) {
html,
body {
html {
zoom: 1.35; /* iPhone 14 Pro Max */
}
}

@media (min-height: 933px) {
html,
body {
html {
zoom: 1; /* 기본 배율 */
}
}