整个页面的多个块都可以使用这个自定义滚动条
*::-webkit-scrollbar {
width: 3px;
background-color: #eee;
}
*::-webkit-scrollbar-thumb {
background-color: #c1c1c1;
&:hover {
background-color: #a8a8a8;
}
&:active {
background-color: #787878;
}
}
* {
scrollbar-width: thin;
scrollbar-color: #c1c1c1 #eee;
}``