king
2024-04-25 dcd660c86dba586c1b78c0530ddee7c1dc093ee6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.chart-edit-form {
  min-height: 190px;
  .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;
    }
  }
}