king
2020-08-26 e4da07b71dddb3b01b58ecaf21ae5b7052e98b7d
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
.menu-shell-inner {
  min-height: calc(100vh - 150px);
  margin: -8px;
 
  >.ant-col {
    padding: 8px;
  }
 
  .mk-component-card {
    position: relative;
    .remove-component {
      position: absolute;
      right: 40px;
      top: -13px;
      color: #ff4d4f;
      border-radius: 2px;
      padding: 5px;
      cursor: pointer;
      opacity: 0;
    }
  }
  .mk-component-card:hover {
    .remove-component {
      opacity: 1;
    }
    .model-datasource > .anticon-setting {
      opacity: 1;
    }
  }
  >.ant-empty {
    padding-top: 150px;
  }
 
  .model-datasource > .anticon-setting {
    font-size: 16px;
    padding: 5px;
    position: absolute;
    right: 0px;
    top: -19px;
    opacity: 0;
  }
}