tabsmixin.less
659 Bytes
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
@NavHeight: 40px;
/deep/.van-tabs {
.van-tabs__wrap {
height: @NavHeight;
.van-tabs__nav {
background : transparent;
padding-bottom: 0;
.van-tab {
font-size : 15px;
color : white;
padding-bottom: 5px;
}
.van-tab--active {
font-size: 19px;
}
.van-tabs__line {
background: white;
bottom : 4px;
}
}
}
.van-tabs__content {
flex: 1;
.van-tab__pane {
height: 100%;
}
}
}