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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
| .margin-bottom {
| margin-bottom: 20px;
| }
|
| .ant-layout-sider-trigger {
| background: #cc4e45;
| }
|
| .ant-layout-sider {
| background-color: #fff !important;
| }
|
| *::-webkit-scrollbar {
| /*滚动条整体样式*/
| width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
| height: 1px;
| }
| *::-webkit-scrollbar-thumb {
| /*滚动条里面小方块*/
| border-radius: 2.5px;
| box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
| background: #ccc;
| }
| *::-webkit-scrollbar-track {
| /*滚动条里面轨道*/
| box-shadow: inset 0 0 5px #fff;
| border-radius: 2.5px;
| background: #fff;
| }
|
| .ant-layout {
| height: 100%;
| display: flex;
| flex-direction: column;
| }
|
| .ant-layout-content {
| flex: 1;
| display: flex;
| flex-direction: column;
| }
|
| // 弹性盒 -- 纵向
| .flex-box-column {
| display: flex;
| flex-direction: column;
| height: 100%;
| }
|
| // 弹性盒 -- 纵向
| .flex-box-row {
| display: flex;
| }
|
| .flex-1 {
| flex: 1;
| overflow-y: auto;
| }
|
| .align-center{
| align-items: center;
| }
|
| .space-between {
| justify-content: space-between;
| }
|
| .ant-modal-body {
| padding: 5px 8px 15px 8px;
| }
| .ant-tabs-bar {
| margin-bottom: 5px;
| }
|
|