fix(ui): hide scrollbars on side menu and hover jump navigator #5945

Closes #5945
This commit is contained in:
Slinetrac
2025-12-29 10:21:44 +08:00
parent ca50e35435
commit e6a0369036
3 changed files with 12 additions and 0 deletions

View File

@@ -30,5 +30,6 @@
- Windows 下自启动改为计划任务实现
- 改进托盘和窗口操作频率限制实现
- 使用「编辑节点」添加节点时,自动将节点添加到第一个 `select` 类型的代理组的第一位
- 隐藏侧边导航栏和悬浮跳转导航的滚动条
</details>

View File

@@ -61,6 +61,12 @@
overflow-y: auto;
margin-bottom: 0px;
padding-top: 4px;
scrollbar-width: none;
&::-webkit-scrollbar {
width: 0;
height: 0;
}
}
.the-traffic {

View File

@@ -106,6 +106,11 @@ export const ProxyGroupNavigator = ({
p: 0.25,
maxHeight: "70vh",
overflowY: "auto",
scrollbarWidth: "none",
"&::-webkit-scrollbar": {
width: 0,
height: 0,
},
minWidth: "auto",
}}
>