WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2023-09-22 254078db63d959f8c473e43b2a6adc3ba66a7119
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
/**
 * CLoading
 * @author Tevin
 */
 
@import "../../common/sassMixin";
 
.c-loading {
    position: relative;
    .at-loading {
        width: 60px;
        height: 60px;
        .at-loading__ring {
            width: 60px;
            height: 60px;
            border-width: 2PX;
        }
    }
    .c-loading-content {
        opacity: 1;
        transition: opacity 0.1s;
        &.off {
            opacity: 0.35;
            transition: opacity 0.5s 0.1s;
        }
    }
}