모바일 오버스크롤 배경 흰색 문제 해결
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:
parent
d69f4f3322
commit
317754206d
1 changed files with 5 additions and 1 deletions
|
|
@ -8,9 +8,13 @@
|
|||
|
||||
html, body, #root {
|
||||
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;
|
||||
}
|
||||
html {
|
||||
overscroll-behavior-y: contain;
|
||||
}
|
||||
|
||||
/* OverlayScrollbars body 오버레이 테마 */
|
||||
.os-theme-maple.os-theme-dark {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue