public.css 423 B

123456789101112131415161718192021222324252627
  1. /** @format */
  2. ::-webkit-scrollbar {
  3. width: 7px;
  4. height: 8px;
  5. }
  6. ::-webkit-scrollbar-track {
  7. background-color: rgb(0 0 0 / 5%);
  8. }
  9. ::-webkit-scrollbar-thumb {
  10. border-radius: 2px;
  11. background-color: rgb(144 147 153 / 30%);
  12. box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
  13. }
  14. ::-webkit-scrollbar-thumb:hover {
  15. background-color: rgb(144 147 153);
  16. }
  17. ::-webkit-scrollbar-corner {
  18. background-color: transparent;
  19. }