fix: input 포커스 시 가로 스크롤/확대 방지
CI / build (push) Failing after 10m43s

뷰포트 maximum-scale=1·user-scalable=no (iOS 포커스 자동확대 방지) +
html/body overflow-x hidden (가로 오버플로 차단).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
sb
2026-07-11 21:44:59 +09:00
parent 38ac028c15
commit 0dcec68cfe
2 changed files with 8 additions and 1 deletions
+4
View File
@@ -1,6 +1,10 @@
// 전역 스타일 — 하늘색 파스텔 배경
html,
body {
background: #F4FAFF;
// input 포커스/키보드 시 가로 스크롤(오버플로) 방지
overflow-x: hidden;
max-width: 100%;
}
.text-brand {