图解

滚动条拆分
1
2
3
4
5
6
7
8
9
10
11
12
&::-webkit-scrollbar {
width: 10px;
height: 10px;
}
&::-webkit-scrollbar-track {
border-radius: 5px;
background-color: rgba(@primary-color, 0.1);
}
&::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: rgba(@primary-color, 0.4);
}