/* 滚动条 */
* ::-webkit-scrollbar-track-piece {
background-color: #09114c;
}
* ::-webkit-scrollbar {
width: 4px;
height: 4px;
}
* ::-webkit-scrollbar-thumb {
border-radius: 20px !important;
background-color: #2239e4;
background-clip: padding-box;
min-height: 10px;
}
* ::-webkit-scrollbar-thumb:hover {
background-color: #2239e4;
}
/* 滚动条不可见 */
* ::-webkit-scrollbar {
width: 0px;
}
评论区