| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * 主题样式入口
- * 以及业务使用的全局样式放在这里
- * @since 1.0.0
- * @version 1.0.0
- */
- @import './core/index';
- @import './base/index';
- @import './modules/index';
- .normal-color {
- color: #7468f2;
- }
- .bold {
- font-weight: 600;
- }
- .statue-label {
- height: 22px;
- line-height: 24px;
- border-radius: 4px;
- font-size: 14px;
- width: 60px;
- text-align: center;
- // 作废
- &.label-invalid {
- background-color: #e8e7e6;
- color: #999999;
- }
- &.label-success {
- background-color: #ebfbee !important;
- color: #39dc5a;
- }
- &.label-draft {
- background-color: #fff3eb;
- color: #ff8c39;
- }
- }
|