loading.scss 353 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    .loading-wrapper {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        p {
            font-size: 14px;
            margin-top: 12px;
            color: $active;
        }
baiguangyao committed
16 17
    }
}