style: 移除滚动条样式

This commit is contained in:
2024-07-22 21:05:17 +08:00
parent 805ae65556
commit b15437537b
2 changed files with 0 additions and 25 deletions

View File

@@ -4,9 +4,6 @@
// 全局类名样式
@import './global.scss';
// 自定义原生滚动条样式
@import './scrollbar-reset.scss';
// 自定义 nprogress 插件进度条颜色
@import './nprogress.scss';

View File

@@ -1,22 +0,0 @@
/* 美化滚动条 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb {
width: 6px;
border-radius: 6px;
background-color: var(--color-neutral-3);
}
::-webkit-scrollbar-thumb:hover {
width: 6px;
background-color: var(--color-neutral-4);
}
::-ms-scrollbar-thumb {
width: 6px;
border-radius: 6px;
background-color: var(--color-neutral-3);
}