index.module.css 634 B

123456789101112131415161718192021222324252627282930313233343536
  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 text-text-primary;
  9. font-weight: 600;
  10. font-size: 20px;
  11. line-height: 32px;
  12. }
  13. .modalHeader .close {
  14. @apply shrink-0 h-4 w-4 bg-center bg-no-repeat cursor-pointer;
  15. background-image: url(../assets/close.svg);
  16. background-size: 16px;
  17. }
  18. .modal .tip {
  19. @apply mt-1 mb-8 text-text-tertiary;
  20. font-weight: 400;
  21. font-size: 13px;
  22. line-height: 18px;
  23. }
  24. .form {
  25. @apply mb-8;
  26. }
  27. .form .label {
  28. @apply mb-2 text-text-primary;
  29. font-weight: 500;
  30. font-size: 14px;
  31. line-height: 20px;
  32. }