WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2021-11-14 70a71c5adb35d9c2b06669319b802ae18606c388
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
/**
 * input-scan-code
 * @author Tevin
 */
 
@import "../../common/sassMixin";
 
.c-input-scan-code {
    .c-input-scan-btn {
        width: 140px;
        height: 48px;
    }
    .c-input-scan-show {
        @include position(absolute, 50% n n 16px);
        width: 100px;
        box-sizing: border-box;
        transform: translateY(-50%);
        pointer-events: none;
        .at-icon-loading {
            margin-right: 9px;
            animation: atRotate 1s linear infinite;
        }
    }
    .at-input__icon {
        display: none;
    }
    .at-input__children {
        &::after {
            display: none;
        }
    }
}