From 3cc21205428ae9cff87b0eea31c9f3641c3f5bf0 Mon Sep 17 00:00:00 2001 From: paco <34928425+pacocoursey@users.noreply.github.com> Date: Thu, 8 Oct 2020 18:57:26 -0600 Subject: [PATCH] Fix footer width --- components/core/Footer/Footer.tsx | 84 ++++++++++++++++--------------- 1 file changed, 43 insertions(+), 41 deletions(-) diff --git a/components/core/Footer/Footer.tsx b/components/core/Footer/Footer.tsx index b6cccdd15..fe5d0b056 100644 --- a/components/core/Footer/Footer.tsx +++ b/components/core/Footer/Footer.tsx @@ -10,55 +10,57 @@ interface Props { const Footer: FC = ({ className }) => { const rootClassName = cn( - 'flex flex-col p-6 md:py-12 md:flex-row bg-black text-white flex-wrap', + 'flex flex-col p-6 md:py-12 md:flex-row flex-wrap max-w-screen-xl m-auto', className ) return ( - + ) }