editor.module.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .container{
  2. padding: 16px;
  3. width: 100%;
  4. box-sizing: border-box;
  5. }
  6. .textInputContainer{
  7. // background-color: white;
  8. // border-radius: 20px;
  9. }
  10. .textInput{
  11. color: #000;
  12. font-family: "PingFang SC";
  13. font-size: 16px;
  14. font-style: normal;
  15. font-weight: 500;
  16. line-height: 32px;
  17. width: 100%;
  18. &::placeholder{
  19. color: rgba(#000, .45);
  20. }
  21. border: 1px solid transparent;
  22. }
  23. .underline{
  24. // border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  25. }
  26. .textAreaContainer{
  27. display: flex;
  28. gap: 12px;
  29. }
  30. .textArea{
  31. .textInput();
  32. width: 100%;
  33. height: 236px;
  34. }
  35. .textAreaButtons{
  36. display: flex;
  37. align-items: center;
  38. }
  39. .textAreaButtonLeft{
  40. display: flex;
  41. flex: 1;
  42. align-items: center;
  43. gap: 8px;
  44. }
  45. .placeHolder{
  46. color:rgba(0,0,0, .45);
  47. font-weight: 400;
  48. }
  49. .formContainer{
  50. display: flex;
  51. flex-direction: column;
  52. gap: 32px;
  53. }
  54. .formItem{
  55. display: flex;
  56. flex-direction: column;
  57. gap: 6px;
  58. }
  59. .inputGrayContainer{
  60. padding: 12px 10px;
  61. border-radius: 10px;
  62. background: white;
  63. }
  64. .inputGray{
  65. font-size: 14px;
  66. line-height: 24px;
  67. color: #000;
  68. }
  69. .formItemLabel{
  70. display: flex;
  71. align-items: center;
  72. padding: 0 4px;
  73. font-size: 12px;
  74. font-weight: 500;
  75. line-height: 22px;
  76. }
  77. .transitionBottom{
  78. transition: bottom 0.2s linear;
  79. }
  80. .formInputContainer{
  81. padding: 12px 10px;
  82. border-radius: 20px;
  83. background-color: white;
  84. }
  85. .formLabel{
  86. color: #000;
  87. font-size: 14px;
  88. font-style: normal;
  89. font-weight: 500;
  90. line-height: 28px; /* 183.333% */
  91. }
  92. .formLabelRequired{
  93. color: rgba(0, 0, 0, 0.45);
  94. font-family: "PingFang SC";
  95. font-size: 14px;
  96. font-style: normal;
  97. font-weight: 500;
  98. line-height: 28px;
  99. }