style.module.css 569 B

123456789101112131415161718192021222324252627282930313233343536
  1. .modal {
  2. position: relative;
  3. }
  4. .modal .close {
  5. position: absolute;
  6. right: 16px;
  7. top: 25px;
  8. width: 32px;
  9. height: 32px;
  10. border-radius: 8px;
  11. background: center no-repeat url(~@/app/components/datasets/create/assets/close.svg);
  12. background-size: 16px;
  13. cursor: pointer;
  14. }
  15. .modal .title {
  16. @apply mb-9;
  17. font-weight: 600;
  18. font-size: 20px;
  19. line-height: 30px;
  20. color: #101828;
  21. }
  22. .modal .content {
  23. @apply mb-9;
  24. font-weight: 400;
  25. font-size: 14px;
  26. line-height: 20px;
  27. color: #101828;
  28. }
  29. .subTitle {
  30. margin-bottom: 8px;
  31. font-weight: 500;
  32. }