index.less 331 B

123456789101112131415161718192021222324
  1. @import '../../app.less';
  2. .progress {
  3. background: @cornflower_bg;
  4. width: 100%;
  5. height: 14px;
  6. border-radius: 7px;
  7. overflow: hidden;
  8. .progress-item {
  9. height: 100%;
  10. background: @cornflower;
  11. }
  12. }
  13. .progress.basic {
  14. height: 14px;
  15. border-radius: 7px;
  16. }
  17. .progress.small {
  18. height: 8px;
  19. border-radius: 4px;
  20. }