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;
| }
| }
| }
|
|