style: 隐藏所有窗口的滚动条

- 在全局 CSS 中为 html 添加 scrollbar-width: none(Firefox)
- 添加 ::-webkit-scrollbar { display: none }(Chrome/Safari/Opera)
This commit is contained in:
雨霖铃
2026-05-22 20:03:09 +08:00
parent 72883b5d1d
commit 02a611e49b
+8
View File
@@ -72,6 +72,9 @@
* { * {
border-color: hsl(var(--border)); border-color: hsl(var(--border));
} }
html {
scrollbar-width: none;
}
body { body {
background-color: hsl(var(--background)); background-color: hsl(var(--background));
color: hsl(var(--foreground)); color: hsl(var(--foreground));
@@ -82,3 +85,8 @@
color: hsl(var(--foreground)); color: hsl(var(--foreground));
} }
} }
/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
display: none;
}