group.css 453 B

123456789101112131415161718192021222324
  1. .cx-newsletter-container .group {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: row;
  5. flex-wrap: wrap;
  6. align-items: center;
  7. justify-content: center;
  8. gap: 2rem;
  9. margin-top: 10px;
  10. margin-bottom: 10px;
  11. }
  12. .cx-newsletter-container .group-selector {
  13. width: 100%;
  14. }
  15. .cx-newsletter-container .group label {
  16. max-width: 300px;
  17. width: 300px;
  18. }
  19. .cx-newsletter-container .group.center {
  20. justify-content: center;
  21. }