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
| /**
| * 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%;
| display: flex;
| justify-content: center;
| align-items: center;
| .c-nav-menu-icon {
| margin-left: 14px;
| }
| .c-nav-back-icon {
| display: flex;
| align-items: center;
| }
| }
| .c-nav-title {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 100%;
| font-size: 32px;
| }
| }
|
|