king
2020-09-24 6ed64ed071c75901ed8848131bfefa51c5c27fce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.card-detail-row {
  .ant-slider-track {
    height: 7px;
  }
  .ant-slider-rail {
    height: 7px;
  }
  .cyan {
    .ant-slider-track {
      background-color: #13C2C2;
    }
    .ant-slider-handle {
      border-color: #13C2C2;
    }
  }
  .orange {
    .ant-slider-track {
      background-color: orange;
    }
    .ant-slider-handle {
      border-color: lightsalmon;
    }
  }
  .primary {
    .ant-slider-track {
      background-color: #1890ff;
    }
    .ant-slider-handle {
      border-color: #91d5ff;
    }
  }
}