index.module.css 838 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .error-tips {
  2. height: 14px;
  3. margin: 4px 0 8px;
  4. font-size: 14px;
  5. color: var(--error-color);
  6. }
  7. .error-tips-hidden {
  8. visibility: hidden;
  9. }
  10. .text-right {
  11. display: block;
  12. height: 32px;
  13. line-height: 2.2;
  14. color: #666;
  15. text-align: right;
  16. }
  17. .field-required {
  18. &::before {
  19. padding-right: 4px;
  20. color: #f20c00;
  21. content: '*';
  22. }
  23. }
  24. .filed-width {
  25. width: 260px;
  26. }
  27. .area-filed {
  28. width: 100%;
  29. resize: none !important;
  30. }
  31. .modal-field {
  32. padding-right: 0;
  33. padding-left: 0;
  34. border: none;
  35. border-bottom: 1px solid #e4e4e4;
  36. border-radius: unset;
  37. box-shadow: unset !important;
  38. }
  39. .modal-select {
  40. & :global(.ant-select-selector) {
  41. padding: 0 !important;
  42. border: unset !important;
  43. border-bottom: 1px solid #e4e4e4 !important;
  44. border-radius: unset;
  45. box-shadow: unset !important;
  46. }
  47. }