Guest User

Untitled

a guest
Jan 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // custom scroll-bar
  2. @mixin custom-scroll-bar() {
  3. &::-webkit-scrollbar {
  4. border-radius: 10px;
  5. height: 10px;
  6. width: 8px;
  7. }
  8.  
  9. &::-webkit-scrollbar-thumb {
  10. background: #999;
  11. border-radius: 10px;
  12. }
  13.  
  14. &::-webkit-scrollbar-track {
  15. border-radius: 10px;
  16. }
  17. }
  18.  
  19. // no scroll bar
  20. @mixin no-scroll-bar() {
  21. &::-webkit-scrollbar {
  22. height: 0;
  23. width: 0;
  24. }
  25.  
  26. &::-webkit-scrollbar-thumb {
  27. height: 0;
  28. width: 0;
  29. }
  30.  
  31. &::-webkit-scrollbar-track {
  32. height: 0;
  33. width: 0;
  34. }
  35. }
Add Comment
Please, Sign In to add comment