index.less 861 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .modalContainer {
  2. width: 60vw;
  3. .modalHeader {
  4. position: relative;
  5. padding: 1.5rem;
  6. .inputSearch {
  7. width: 99%;
  8. }
  9. .closeIcon {
  10. position: absolute;
  11. top: 5px;
  12. right: 7px;
  13. }
  14. }
  15. .modalContent {
  16. height: 63vh;
  17. max-height: 63vh;
  18. padding: 1.5rem;
  19. overflow-y: auto;
  20. border-top: 1px solid #dee2e6;
  21. border-bottom: 1px solid #dee2e6;
  22. .card {
  23. display: flex;
  24. align-items: center;
  25. justify-content: space-between;
  26. padding: 1rem;
  27. word-wrap: break-word;
  28. background-color: #ffffff;
  29. background-clip: border-box;
  30. border: 1px solid rgba(0, 0, 0, 0.08);
  31. border-radius: 4px;
  32. box-shadow: 0 0 13px 0 rgba(74, 53, 107, 0.08);
  33. &:not(:last-of-type) {
  34. margin-bottom: 1rem;
  35. }
  36. }
  37. }
  38. .modalFooter {
  39. padding: 1.5rem;
  40. }
  41. }