variables.less 865 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // 公共样式和变量
  2. @import 'mixin';
  3. @import 'theme.less';
  4. @m-grey0: #364048;
  5. @m-grey1: #7a8a94;
  6. @m-grey2: #88a0ae;
  7. @m-grey3: #ccc;
  8. @m-grey4: #333333;
  9. @m-grey5: #363F45;
  10. @m-red0: #ff4d4f;
  11. @m-white: #fff;
  12. @m-black0: #242a2e;
  13. @m-black1: #181e22;
  14. @m-black2: #0E0E0F;
  15. @m-blue0: #3a87f7;
  16. @m-blue1: #4885eb;
  17. @m-blue2: #3270d2;
  18. @body-bg: #e9eef3;
  19. @font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  20. //高度设置
  21. @bottomHeight: 330px;
  22. /*滚动条样式*/
  23. // ::-webkit-scrollbar {
  24. // width: 10px;
  25. // height: 10px;
  26. // }
  27. ::-webkit-scrollbar-thumb {
  28. border-radius: 10px;
  29. }
  30. ::-webkit-scrollbar-button {
  31. background-color: transparent;
  32. }
  33. ::-webkit-scrollbar-track-piece {
  34. background-color: transparent;
  35. }
  36. ::-webkit-scrollbar-corner,
  37. .el-input::-webkit-scrollbar-corner {
  38. background-color: transparent;
  39. }