style.scss 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .crew-invite-page {
  2. max-width: 480px;
  3. margin: 80px auto;
  4. padding: 32px 24px;
  5. border: 1px solid var(--border-default);
  6. border-radius: 12px;
  7. background: var(--bg-page);
  8. text-align: center;
  9. @media (max-width: 768px) {
  10. margin: 32px 16px;
  11. padding: 24px 16px;
  12. }
  13. &__icon {
  14. display: flex;
  15. justify-content: center;
  16. margin: 0 0 16px;
  17. &--success {
  18. color: var(--green-500, #10b981);
  19. }
  20. &--danger {
  21. color: var(--red-500, #ef4444);
  22. }
  23. &--muted {
  24. color: var(--text-secondary, #6b7280);
  25. }
  26. }
  27. &__title {
  28. font-size: 1.375rem;
  29. font-weight: 700;
  30. color: var(--text-primary);
  31. margin: 0 0 12px;
  32. }
  33. &__desc {
  34. font-size: 0.9375rem;
  35. color: var(--text-secondary);
  36. line-height: 1.6;
  37. margin: 0 0 24px;
  38. }
  39. &__actions {
  40. display: flex;
  41. gap: 12px;
  42. justify-content: center;
  43. button {
  44. min-width: 100px;
  45. }
  46. @media (max-width: 480px) {
  47. flex-direction: column;
  48. button {
  49. width: 100%;
  50. }
  51. }
  52. }
  53. }