wangzhibo
4 天以前 10595d8632f959d0954d1939243196f4eed02372
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
.cl-switch {
    position: relative;
 
    .uni-switch-input {
        margin-right: 0;
    }
 
    .uni-switch-wrapper {
        .uni-switch-input {
            &.uni-switch-input-checked {
                background-color: $cl-color-primary;
                border-color: $cl-color-primary;
            }
        }
    }
}
 
.wx-switch-input {
    background-color: $cl-color-primary !important;
    border-color: $cl-border-color !important;
 
    &-checked {
        border-color: $cl-color-primary !important;
    }
}