From 81630f64b7bdf6ca8c729f29eeb1ddf0b21769ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Cailly?= Date: Mon, 23 Jun 2025 09:03:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=B1=20fix=20responsive=20issue=20on=20?= =?UTF-8?q?contact=20button?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/agency/[city]/page.tsx | 2 +- .../marketing/agency/contact-cta.tsx | 18 +++++++++--------- tailwind.config.ts | 3 +++ 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/app/agency/[city]/page.tsx b/src/app/agency/[city]/page.tsx index 7b07db1ce..8c871c5ab 100644 --- a/src/app/agency/[city]/page.tsx +++ b/src/app/agency/[city]/page.tsx @@ -72,7 +72,7 @@ export default async function CityPage({ params }: AgencyPageProps) { ]; return ( -
+
= ({ agency }) => {
- - - - - - + + +
diff --git a/tailwind.config.ts b/tailwind.config.ts index 45cdf1039..8353e57e0 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -10,6 +10,9 @@ export default { ], theme: { extend: { + screens: { + 'xs': '480px' + }, fontFamily: { sans: ["var(--font-figtree)"], },