From 02f8443fe3a756bb919a344741ffe9bc6c367c59 Mon Sep 17 00:00:00 2001 From: yassinnouh21 Date: Fri, 4 Apr 2025 21:42:32 +0200 Subject: [PATCH] fix styling Signed-off-by: yassinnouh21 --- infra/website/src/styles/global.css | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) 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;