모바일 오버스크롤 배경 흰색 문제 해결

html/body에 background-color도 명시해 브라우저 고무줄 영역에서
흰색이 보이지 않도록 하고 overscroll-behavior-y: contain 추가.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-04-15 11:28:02 +09:00
parent d69f4f3322
commit 317754206d

View file

@ -8,9 +8,13 @@
html, body, #root { html, body, #root {
min-height: 100%; min-height: 100%;
background: linear-gradient(to bottom right, #030712, #030712, #0f172a); background-color: #030712;
background-image: linear-gradient(to bottom right, #030712, #030712, #0f172a);
background-attachment: fixed; background-attachment: fixed;
} }
html {
overscroll-behavior-y: contain;
}
/* OverlayScrollbars body 오버레이 테마 */ /* OverlayScrollbars body 오버레이 테마 */
.os-theme-maple.os-theme-dark { .os-theme-maple.os-theme-dark {