diff --git a/infra/website/src/styles/global.css b/infra/website/src/styles/global.css index 7fa63479514..f6bcbf24f18 100644 --- a/infra/website/src/styles/global.css +++ b/infra/website/src/styles/global.css @@ -569,15 +569,22 @@ main::before { color: var(--color-text); } -.integration-item { +.integration-grid { display: flex; - align-items: center; - justify-content: center; - height: 40px; - text-align: center; + flex-wrap: wrap; + gap: 24px 20px; margin: 0 auto; + justify-content: center; width: 100%; - max-width: 140px; + max-width: 900px; +} + +.integration-item { + flex: 0 0 150px; + display: flex; + justify-content: center; + align-items: center; + margin: 0 10px; } .integration-logo { @@ -621,16 +628,6 @@ main::before { color: var(--color-text); } -.integration-grid { - display: grid; - grid-template-columns: repeat(5, 1fr); - gap: 24px 20px; - margin: 0 auto; - justify-content: center; - width: 100%; - max-width: 900px; -} - /* Code section */ .code-section { position: relative;