vue修改滑动条样式
<style lang="scss" scoped>
::-webkit-scrollbar:vertical {
width: 5px;
color: red;
}
::-webkit-scrollbar {
width: 2px;
// color: red;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
border-radius: 5px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: rgba(229, 234, 237, 0.1);
-webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}
</style>