🤖
436 in / 1685 out / 2121 total tokens
html과 body의 높이 제한을 제거하고 #app에 position: fixed를 적용해 스크롤 영역을 전역이 아닌 컨테이너 내부로 한정했습니다. 배경색이 깨지는 이슈도 해결되었습니다.
#app {
position: fixed;
width: 100%;
max-width: 390px;
height: 100vh;
height: 100dvh;
overflow: hidden;
background: var(--surface);
}