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
| .content-box {
| padding-top: 48px;
| max-width: calc(100% - 235px);
| transition: max-width 0.2s;
| .content-header {
| width: 100%;
| height: 100%;
| // .ant-tabs .ant-tabs-top-content.ant-tabs-content-animated {
| // transition: margin-left 0s cubic-bezier(0.645, 0.045, 0.355, 1);
| // }
| .ant-tabs-tab {
| padding: 18px 16px 6px;
| cursor: default;
| span i {
| position: relative;
| left: 7px;
| top: -6px;
| font-size: 10px;
| margin: 0px;
| cursor: pointer;
| }
| span.tab-name {
| cursor: pointer;
| }
| }
| iframe {
| width: 100%;
| height: calc(100vh - 115px);
| overflow-y: scroll;
| border: 0;
| }
| }
| }
| .content-box.collapsed {
| max-width: calc(100% - 80px);
| }
|
|