nav-tab.scss
718 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
38
39
40
.reds-shop {
.shop-tabs {
display: flex;
justify-content: space-around;
width: 100%;
font-size: 30px;
line-height: 80px;
border-top: 1PX solid #dededf;
border-bottom: 1PX solid #dededf;
background-color: #fff;
touch-action: none;
em {
color: #dededf;
}
&.sticky {
z-index: 10;
}
}
.shop-tab-nav {
color: #dededf;
width: 33.33%;
text-align: center;
span {
display: inline-block;
width: 100%;
}
&.active {
color: #434241;
}
a {
color: inherit;
}
}
}