- // @import "@/assets/common-style/scroll-bar.scss";
- .list-box::-webkit-scrollbar {
- /*滚动条整体样式*/
- width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 1px;
- }
- ::-webkit-scrollbar {
- width: 3px;
- }
- ::-webkit-scrollbar-thumb {
- background: #e4e4e4;
- border-radius: 8px;
- }
- ::-webkit-scrollbar-track-piece {
- background: transparent;
- }
|