AddUserModal.less 447 Bytes
Newer Older
1 2 3 4 5 6 7
.modalContent {
  width: 100%;
  height: 100%;

  .ant-form-item-feedback-icon {
    margin-left: 10px;
  }
8 9 10

  .formBox {
    position: relative;
11 12 13
    .ant-input-password-icon {
      margin-top: 6px;
    }
14 15 16
    .tipsText {
      position: absolute;
      right: 40px;
17
      top: 7px;
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
      z-index: 11;
    }

    .tipsGreen {
      color: limegreen;
    }

    .tipsRed {
      color: red;
    }

    .tipsOrange {
      color: coral;
    }
  }

34
}