mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-04-18 00:11:08 +08:00
fix(ui): hide scrollbars on side menu and hover jump navigator #5945
Closes #5945
This commit is contained in:
parent
ca50e35435
commit
e6a0369036
@ -30,5 +30,6 @@
|
|||||||
- Windows 下自启动改为计划任务实现
|
- Windows 下自启动改为计划任务实现
|
||||||
- 改进托盘和窗口操作频率限制实现
|
- 改进托盘和窗口操作频率限制实现
|
||||||
- 使用「编辑节点」添加节点时,自动将节点添加到第一个 `select` 类型的代理组的第一位
|
- 使用「编辑节点」添加节点时,自动将节点添加到第一个 `select` 类型的代理组的第一位
|
||||||
|
- 隐藏侧边导航栏和悬浮跳转导航的滚动条
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|||||||
@ -61,6 +61,12 @@
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
|
scrollbar-width: none;
|
||||||
|
|
||||||
|
&::-webkit-scrollbar {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.the-traffic {
|
.the-traffic {
|
||||||
|
|||||||
@ -106,6 +106,11 @@ export const ProxyGroupNavigator = ({
|
|||||||
p: 0.25,
|
p: 0.25,
|
||||||
maxHeight: "70vh",
|
maxHeight: "70vh",
|
||||||
overflowY: "auto",
|
overflowY: "auto",
|
||||||
|
scrollbarWidth: "none",
|
||||||
|
"&::-webkit-scrollbar": {
|
||||||
|
width: 0,
|
||||||
|
height: 0,
|
||||||
|
},
|
||||||
minWidth: "auto",
|
minWidth: "auto",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user