king
2020-05-26 a2df1bad33874fc6d9f96b0ceb1a6ce97b2e7e80
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
.chart-edit-form {
  min-height: 190px;
  .ant-form-item {
    .ant-input-number {
      width: 100%;
    }
  }
  .anticon-question-circle {
    color: #c49f47;
    position: relative;
    left: -3px;
  }
  .chart-model-image {
    .ant-col-6 {
      min-height: 110px;
    }
    img {
      max-width: 100%;
      cursor: pointer;
      border: 1px solid #ebedf0;
      transition: all .3s;
      margin-bottom: 15px;
    }
    img.active {
      background-color: rgba(135,59,244,.1);
      border-color: #873bf4;
    }
  }
}