index.less 731 Bytes
Newer Older
田翔's avatar
田翔 committed
1
@import '~antd/es/style/themes/default.less';
田翔's avatar
田翔 committed
2 3 4 5 6 7 8 9 10 11 12
.inputAddon {
  position: relative;
  .@{ant-prefix}-input {
    padding-right: 30px;
  }
  .addon {
    position: absolute;
    right: 10px;
    top: 5px;
    &:hover {
      color: #4096ff;
田翔's avatar
田翔 committed
13
    }
田翔's avatar
田翔 committed
14 15 16 17 18 19 20 21 22 23 24 25 26
  }
  .iconBox {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    .iconItem {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      font-size: 50px;
田翔's avatar
田翔 committed
27
      &:hover {
田翔's avatar
田翔 committed
28
        cursor: pointer;
田翔's avatar
田翔 committed
29
      }
田翔's avatar
田翔 committed
30 31 32 33 34 35
      &[active='true'] {
        transition: all 0.3s ease;
        background: #4096ff;
        border-radius: 5px;
        color: white;
        transform: scale(1.2);
田翔's avatar
田翔 committed
36 37 38 39
      }
    }
  }
}