Fixhancement: restore native scrolling, background (#5573)

This commit is contained in:
shamoon
2025-07-25 18:01:03 -07:00
committed by GitHub
parent 0c000c1ecd
commit 8c4e73e122
4 changed files with 63 additions and 60 deletions

View File

@@ -25,8 +25,6 @@
}
#__next {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
@@ -34,16 +32,17 @@
html,
body {
font-family: Manrope, "Manrope-Fallback", Arial, sans-serif;
overflow: hidden;
height: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
letter-spacing: 0.1px;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
#page_wrapper {
width: 100vw;
height: 100vh;
width: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}
@@ -60,15 +59,6 @@ body {
--scrollbar-track: rgb(var(--color-700));
}
#page_container {
overflow: auto;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
::-webkit-scrollbar {
width: 0.75em;
}
dialog ::-webkit-scrollbar {
display: none;
}