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
26
27
28
29
30
31
32
33
34
35
36
37
38
.cl-footer {
    width: 100%;
    position: relative;
 
    &__placeholder {
        transition: height 0.3s;
    }
 
    &__inner {
        & > :deep(cl-button) {
            width: 100%;
        }
 
        &.is-flex {
            display: flex;
        }
    }
 
    &.is-border {
        &::before {
            content: "";
            display: block;
            height: $cl-border-width;
            width: 100%;
            background-color: $cl-color-bg;
            position: absolute;
            top: 0;
            left: 0;
        }
    }
 
    &.is-fixed {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        left: 0;
        bottom: 0;
    }
}