public.less 999 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #app {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. // =================================
  6. // ==============scrollbar==========
  7. // =================================
  8. ::-webkit-scrollbar {
  9. width: 7px;
  10. height: 8px;
  11. }
  12. // ::-webkit-scrollbar-track {
  13. // background: transparent;
  14. // }
  15. ::-webkit-scrollbar-track {
  16. // background-color: rgb(0 0 0 / 5%);
  17. background: transparent;
  18. }
  19. ::-webkit-scrollbar-thumb {
  20. // background: rgba(0, 0, 0, 0.6);
  21. background-color: rgb(144 147 153 / 30%);
  22. // background-color: rgba(144, 147, 153, 0.3);
  23. border-radius: 2px;
  24. box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
  25. }
  26. ::-webkit-scrollbar-thumb:hover {
  27. background-color: @border-color-dark;
  28. }
  29. // =================================
  30. // ==============nprogress==========
  31. // =================================
  32. #nprogress {
  33. pointer-events: none;
  34. .bar {
  35. position: fixed;
  36. top: 0;
  37. left: 0;
  38. z-index: 99999;
  39. width: 100%;
  40. height: 2px;
  41. background-color: @primary-color;
  42. opacity: 0.75;
  43. }
  44. }