Advertisement
guyssar001

Untitled

Sep 14th, 2022
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.33 KB | None | 0 0
  1. /* width */
  2. ::-webkit-scrollbar {
  3.     width: 15px;
  4.   }
  5.  
  6.   /* Track */
  7.   ::-webkit-scrollbar-track {
  8.     background: #cfcfcf;
  9.   }
  10.    
  11.   /* Handle */
  12.   ::-webkit-scrollbar-thumb {
  13.     background: rgb(113, 113, 113);
  14.   }
  15.  
  16.   /* Handle on hover */
  17.   ::-webkit-scrollbar-thumb:hover {
  18.     background: rgb(63, 63, 63);
  19.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement