public.less 385 B

1234567891011121314151617181920212223
  1. .app-svg-loading {
  2. position: relative;
  3. width: auto;
  4. }
  5. ::-webkit-scrollbar {
  6. width: 6px;
  7. height: 6px;
  8. }
  9. ::-webkit-scrollbar-track {
  10. background: rgba(0, 0, 0, 0.05);
  11. }
  12. ::-webkit-scrollbar-thumb {
  13. background: rgba(0, 0, 0, 0.2);
  14. border-radius: 4px;
  15. box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  16. }
  17. ::-webkit-scrollbar-thumb:hover {
  18. background: @border-color-dark;
  19. }