index.less 656 Bytes
Newer Older
田翔's avatar
田翔 committed
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
@import '~antd/es/style/themes/default.less';
@pandaXform: ~'@{ant-prefix}-pandaXform';
.@{pandaXform} {
  .inputAddon {
    .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;
        &:hover {
          cursor: pointer;
        }
        &[active='true'] {
          transition: all 0.3s ease;
          background: #4096ff;
          border-radius: 5px;
          color: white;
          transform: scale(1.2);
        }
      }
    }
  }
}