直接在页面上引用就好了
.idt-scrollbar {
overflow-y: auto;
box-sizing: border-box;
&::-webkit-scrollbar {
width: 1px;
background-color: @blueGrey_100;
}
&::-webkit-scrollbar-thumb {
background-color: #0ae;
}
&::-webkit-scrollbar-track {
background-color: @blueGrey_100;
}
}
.idt-scrollbar-2 {
overflow-x: auto;
box-sizing: border-box;
&::-webkit-scrollbar {
height: 5px;
background-color: @blueGrey_100;
}
&::-webkit-scrollbar-thumb {
background-color: #0ae;
}
&::-webkit-scrollbar-track {
background-color: @blueGrey_100;
}
}
网友评论