king
2021-06-02 e543372cc70a19ff2630c79d8421c2c593e54e5f
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
.mk-icon-box {
  display: block;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  line-height: 32px;
  padding: 0px 0px 0px 10px;
 
  .anticon:last-child {
    float: right;
    line-height: 32px;
    padding: 0 10px;
    border-left: 1px solid #d9d9d9;
  }
}
.mk-icon-box:hover {
  border-color: #1890ff;
}
.mk-icon-wrap {
  .ant-col {
    text-align: center;
    line-height: 55px;
    .anticon {
      font-size: 30px;
      cursor: pointer;
    }
  }
  .active.ant-col {
    .anticon {
      color: #1890ff;
    }
  }
}