index.scss 456 B

123456789101112131415161718192021
  1. /* 滚动条样式 */
  2. ::-webkit-scrollbar {
  3. width: 12px;
  4. height: 12px;
  5. }
  6. ::-webkit-scrollbar-thumb {
  7. border-radius: 6px;
  8. border: 2px solid transparent;
  9. background-color: #d9d9d9;
  10. cursor: pointer;
  11. background-clip: padding-box;
  12. }
  13. ::-webkit-scrollbar-thumb:hover {
  14. background-color: #bfbfbf;
  15. }
  16. ::-webkit-scrollbar-track {
  17. background: #f0f2f5;
  18. }
  19. ::-webkit-scrollbar-corner {
  20. background: transparent;
  21. }