Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

new-project-modal.component.scss 872B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .modal-overlay {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. background-color: rgba(0, 0, 0, 0.5);
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. z-index: 1000;
  12. }
  13. .modal-container {
  14. background: white;
  15. border-radius: 8px;
  16. width: 500px;
  17. max-width: 90vw;
  18. max-height: 80vh;
  19. overflow: auto;
  20. box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  21. }
  22. .modal-header {
  23. display: flex;
  24. justify-content: space-between;
  25. align-items: center;
  26. padding: 20px 24px;
  27. border-bottom: 1px solid #e0e0e0;
  28. }
  29. .modal-header h2 {
  30. margin: 0;
  31. font-size: 1.5rem;
  32. font-weight: 500;
  33. }
  34. .modal-content {
  35. padding: 24px;
  36. }
  37. .full-width {
  38. width: 100%;
  39. margin-bottom: 20px;
  40. }
  41. .modal-actions {
  42. display: flex;
  43. justify-content: flex-end;
  44. gap: 12px;
  45. margin-top: 24px;
  46. }
  47. mat-spinner {
  48. display: inline-block;
  49. margin-right: 8px;
  50. }