scrollbar.css 344 B

123456789101112131415161718192021
  1. .scrollbar {
  2. scrollbar-color: #777 #0000;
  3. }
  4. .scrollbar *::-webkit-scrollbar {
  5. height: 6px;
  6. width: 6px;
  7. background-color: #0000;
  8. }
  9. /* Add a thumb */
  10. .scrollbar *::-webkit-scrollbar-thumb {
  11. border-radius: 3px;
  12. height: 6px;
  13. width: 6px;
  14. background: #777;
  15. }
  16. .scrollbar *::-webkit-scrollbar-thumb:hover {
  17. background: #555;
  18. }