💄 fix(scroll): 滚动条样式美化

This commit is contained in:
BTMuli
2023-04-13 18:08:00 +08:00
parent 4873b7c439
commit 402250441b

View File

@@ -1,5 +1,29 @@
@import "fonts/index.css";
/*
* @description 侧边滚动条样式
* @since Alpha v0.1.3
*/
::-webkit-scrollbar {
width: 10px;
height: 10px;
border-radius: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/*
* @description 米游社解析 json
* @since Alpha v0.1.1