Advertisement
szymonwalle

flashii scrollbars workaround

Sep 16th, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.48 KB | None | 0 0
  1. ::-webkit-scrollbar-thumb {
  2.     background-color: #8559a5;
  3.     background-color: var(--accent-colour);
  4. }
  5. ::-webkit-scrollbar-track {
  6.     background-color: #111;
  7.     background-color: var(--background-colour);
  8. }
  9.  
  10. ::-webkit-scrollbar {
  11.     width: 15px;
  12.     height: 15px;
  13. }
  14.  
  15. div.pagination__section::-webkit-scrollbar, div.forum__leaderboard__categories::-webkit-scrollbar {
  16.     width: 3px;
  17.     height: 3px;
  18. }
  19.  
  20. .pagination__section--pages {
  21.     padding-bottom: 2px;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement