WebApp【公共组件库】@前端(For Git Submodule)
‘chensiAb’
6 days ago a44eddf956e7042b64428044f057c76ddf2ac791
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
 * cNavCustomBar - 自定义导航条
 * @author chensi
 */
 
@import "../../common/sassMixin";
 
.c-nav-custom-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    .c-nav-icon {
        position: absolute;
        left: 0px;
        height: 100%;
        width: 120px;
        .c-nav-menu-icon {
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
            padding-left: 16px;
            box-sizing: border-box;
        }
        .c-nav-back-icon {
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
            padding-left: 4px;
            box-sizing: border-box;
        }
    }
    .c-nav-title-back {
        font-size: 34px;
        color: #000;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .c-nav-title {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 32px;
    }
}