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
| /**
| * 徐祥健<xuxj@hugeinfo.com.cn>
| * 2018年7月16日 17:32
| *
| */
|
|
| @import '../../conf/vars';
|
| .table-view {
| &-main {
| padding: 8px;
| margin: 0px 20px;
| background-color: #fff;
| }
| &-title {
| height: 40px;
| line-height: 40px;
| font-weight: bold;
| margin-left: 20px;
| margin-right: 20px;
| background-color: #fff;
| border-bottom: 1px solid #F3F3F3;
| padding-left: 16px;
| }
| }
|
|