main.scss 636 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * 主题样式入口
  3. * 以及业务使用的全局样式放在这里
  4. * @since 1.0.0
  5. * @version 1.0.0
  6. */
  7. @import './core/index';
  8. @import './base/index';
  9. @import './modules/index';
  10. .normal-color {
  11. color: #7468f2;
  12. }
  13. .bold {
  14. font-weight: 600;
  15. }
  16. .statue-label {
  17. height: 22px;
  18. line-height: 24px;
  19. border-radius: 4px;
  20. font-size: 14px;
  21. width: 60px;
  22. text-align: center;
  23. // 作废
  24. &.label-invalid {
  25. background-color: #e8e7e6;
  26. color: #999999;
  27. }
  28. &.label-success {
  29. background-color: #ebfbee !important;
  30. color: #39dc5a;
  31. }
  32. &.label-draft {
  33. background-color: #fff3eb;
  34. color: #ff8c39;
  35. }
  36. }