index.less 437 Bytes
Newer Older
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
.input {
  transition: all .3s;
  width: 0;
  background: transparent;
  border-radius: 0;
  :global(.ant-select-selection) {
    background: transparent;
  }
  input {
    border: 0;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
    &::placeholder {
      color: rgba(255, 255, 255, .5);
    }
  }
  &,
  &:hover,
  &:focus {
    border-bottom: 1px solid #fff;
  }
  &.show {
    width: 210px;
    margin-left: 8px;
  }
}