Advertisement
bizofack

Untitled

Jul 14th, 2020
1,124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.54 KB | None | 0 0
  1. ::-webkit-scrollbar {
  2.   height: 12px;
  3.   width: 14px;
  4.   background: transparent;
  5.   z-index: 12;
  6.   overflow: visible;
  7.   }
  8.  
  9. ::-webkit-scrollbar-thumb {
  10.   width: 10px;
  11.   background-color: #434953;
  12.   border-radius: 10px;
  13.   z-index: 12;
  14.   border: 4px solid rgba(0, 0, 0, 0);
  15.   background-clip: padding-box;
  16.   transition: background-color .32s ease-in-out;
  17.   margin: 4px;
  18.   min-height: 32px;
  19.   min-width: 32px;
  20.   }
  21.  
  22. ::-webkit-scrollbar-thumb:hover {
  23.   background: #4E5157; }
  24.  
  25. ::-webkit-scrollbar-corner {
  26.   background: #202020;
  27.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement