_custom.scss 497 B

123456789101112131415161718192021222324252627
  1. .bandeau_partenaires {
  2. display: flex;
  3. flex-direction: row;
  4. flex-wrap: nowrap;
  5. margin-bottom: 3rem;
  6. justify-content: center;
  7. align-items: center;
  8. align-content: space-around;
  9. img {
  10. height: 4rem;
  11. width: auto;
  12. margin-right: 2rem;
  13. }
  14. }
  15. @media only screen and (max-width: 400px) {
  16. .bandeau_partenaires {
  17. align-self: center;
  18. justify-content: center;
  19. margin: 1rem;
  20. img {
  21. height: 3rem;
  22. margin-right: 1rem;
  23. margin-bottom: 1rem;
  24. }
  25. }
  26. }