123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- .container{
- padding: 16px;
- width: 100%;
- box-sizing: border-box;
- }
- .textInputContainer{
- // background-color: white;
- // border-radius: 20px;
- }
- .textInput{
- color: #000;
- font-family: "PingFang SC";
- font-size: 16px;
- font-style: normal;
- font-weight: 500;
- line-height: 32px;
- width: 100%;
- &::placeholder{
- color: rgba(#000, .45);
- }
- border: 1px solid transparent;
- }
- .underline{
- // border-bottom: 1px solid rgba(0, 0, 0, 0.08);
- }
- .textAreaContainer{
- display: flex;
- gap: 12px;
- }
- .textArea{
- .textInput();
- width: 100%;
- height: 236px;
- }
- .textAreaButtons{
- display: flex;
- align-items: center;
- }
- .textAreaButtonLeft{
- display: flex;
- flex: 1;
- align-items: center;
- gap: 8px;
- }
- .placeHolder{
- color:rgba(0,0,0, .45);
- font-weight: 400;
- }
- .formContainer{
- display: flex;
- flex-direction: column;
- gap: 32px;
- }
- .formItem{
- display: flex;
- flex-direction: column;
- gap: 6px;
- }
- .inputGrayContainer{
- padding: 12px 10px;
- border-radius: 10px;
- background: white;
- }
- .inputGray{
- font-size: 14px;
- line-height: 24px;
- color: #000;
- }
- .formItemLabel{
- display: flex;
- align-items: center;
- padding: 0 4px;
- font-size: 12px;
- font-weight: 500;
- line-height: 22px;
- }
- .transitionBottom{
- transition: bottom 0.2s linear;
- }
- .formInputContainer{
- padding: 12px 10px;
- border-radius: 20px;
- background-color: white;
- }
- .formLabel{
- color: #000;
- font-size: 14px;
- font-style: normal;
- font-weight: 500;
- line-height: 28px; /* 183.333% */
- }
- .formLabelRequired{
- color: rgba(0, 0, 0, 0.45);
- font-family: "PingFang SC";
- font-size: 14px;
- font-style: normal;
- font-weight: 500;
- line-height: 28px;
- }
|