scroll-bar.scss 364 B

12345678910111213141516
  1. // @import "@/assets/common-style/scroll-bar.scss";
  2. .list-box::-webkit-scrollbar {
  3. /*滚动条整体样式*/
  4. width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
  5. height: 1px;
  6. }
  7. ::-webkit-scrollbar {
  8. width: 3px;
  9. }
  10. ::-webkit-scrollbar-thumb {
  11. background: #e4e4e4;
  12. border-radius: 8px;
  13. }
  14. ::-webkit-scrollbar-track-piece {
  15. background: transparent;
  16. }