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
| .myTabContent {
| .arco-tabs-header-nav {
| margin-left: 16px;
| }
|
| .arco-tabs-header-nav-line.arco-tabs-header-nav-horizontal>.arco-tabs-header-scroll .arco-tabs-header-title:first-of-type {
| margin-left: 0;
| }
|
| .arco-tabs-header-nav-line .arco-tabs-header-title {
| margin: 0 16px 0 0;
| }
| }
|
| .tabBtn {
| display: flex;
| margin-bottom: 12px;
|
| &-unit {
| display: inline-block;
| height: 32px;
| border-radius: 21px;
| color: #1D2129;
| padding: 3px 12px 4px 12px;
| cursor: pointer;
| background: #f2f3f5;
| line-height: 27px;
| margin-right: 5px;
| }
|
| &-unitActive {
| background: #f3f2f7;
| color: #1a6fb8;
| }
| }
|
|