25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

50 satır
851 B

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. .logo-wall {
  4. margin: 0 0 1em 0;
  5. .text-wrapper {
  6. margin-bottom: 2rem;
  7. }
  8. .text-box {
  9. max-width: 900px;
  10. .like-h2 {
  11. margin-bottom: 0.25rem;
  12. margin-top: 0;
  13. }
  14. }
  15. .logo-grid {
  16. display: grid;
  17. grid-template-columns: repeat(4, 1fr);
  18. gap: 2rem;
  19. align-items: center;
  20. justify-content: start;
  21. @media (max-width: 600px) {
  22. grid-template-columns: repeat(3, 1fr);
  23. }
  24. a,
  25. .logo-item {
  26. height: 5rem;
  27. max-width: 15rem;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. @media (max-width: 600px) {
  32. height: 2.5rem;
  33. }
  34. }
  35. .logo-item {
  36. img {
  37. max-width: 100%;
  38. max-height: 100%;
  39. object-fit: contain;
  40. }
  41. }
  42. }
  43. }