123456789101112131415161718192021222324 |
- @import '../../app.less';
- .progress {
- background: @cornflower_bg;
- width: 100%;
- height: 14px;
- border-radius: 7px;
- overflow: hidden;
- .progress-item {
- height: 100%;
- background: @cornflower;
- }
- }
- .progress.basic {
- height: 14px;
- border-radius: 7px;
- }
- .progress.small {
- height: 8px;
- border-radius: 4px;
- }
|