From 204af3fc3e2aecddec8cc388a3339b97b0f388da Mon Sep 17 00:00:00 2001 From: Nicolas KOKLA Date: Tue, 14 Jan 2025 16:29:56 +0100 Subject: [PATCH] Fix: Wrong alignement of table on page "Commune" https://github.com/BaseAdresseNationale/adresse.data.gouv.fr/issues/1971 --- src/app/commune/[codeCommune]/page.styles.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/commune/[codeCommune]/page.styles.tsx b/src/app/commune/[codeCommune]/page.styles.tsx index f0b598e23..8cbbf2ee4 100644 --- a/src/app/commune/[codeCommune]/page.styles.tsx +++ b/src/app/commune/[codeCommune]/page.styles.tsx @@ -96,7 +96,13 @@ export const StyledCommunePage = styled.div<{ $certificationPercentage: number } } .fr-table { + align-self: auto; + } + + @media screen and (min-width: ${({ theme }) => theme.breakpoints.lg}) { + .fr-table { align-self: center; + } } }