index.module.css 633 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .modal {
  2. position: relative;
  3. }
  4. .modalHeader {
  5. @apply flex items-center place-content-between h-8;
  6. }
  7. .modalHeader .title {
  8. @apply grow;
  9. font-weight: 600;
  10. font-size: 20px;
  11. line-height: 32px;
  12. color: #101828;
  13. }
  14. .modalHeader .close {
  15. @apply shrink-0 h-4 w-4 bg-center bg-no-repeat cursor-pointer;
  16. background-image: url(../assets/close.svg);
  17. background-size: 16px;
  18. }
  19. .modal .tip {
  20. @apply mt-1 mb-8;
  21. font-weight: 400;
  22. font-size: 13px;
  23. line-height: 18px;
  24. color: #667085;
  25. }
  26. .form {
  27. @apply mb-8;
  28. }
  29. .form .label {
  30. @apply mb-2;
  31. font-weight: 500;
  32. font-size: 14px;
  33. line-height: 20px;
  34. color: #101828;
  35. }