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
| @import './theme.css';
| @import (reference) 'dingtalk-theme/dingtalk-x/mob.less';
| @import './public.less';
| @import './form.less';
|
| @import '../views/login/index.less';
|
| .custom-grid-tabs {
| display: flex;
| flex-wrap: wrap;
| background: #2176c1;
| border-radius: 4px;
| overflow: hidden;
| background-color: #fff;
| padding: 6px 12px;
| .grid-tab-item {
| box-sizing: border-box;
| height: 48px;
| line-height: 48px;
| text-align: center;
| color: #fff;
| font-size: 16px;
| cursor: pointer;
| background: #2176c1;
| transition: background 0.2s;
| &.active {
| background: #5faee3;
| color: #fff;
| font-weight: bold;
| }
| }
| }
| .custom-tab-content {
| margin-top:0px;
| }
|
|