From a05c15b0029c2f0e078e3d1cfe57b299fb7783e8 Mon Sep 17 00:00:00 2001 From: paco <34928425+pacocoursey@users.noreply.github.com> Date: Thu, 8 Oct 2020 14:17:06 -0600 Subject: [PATCH] Footer fixes --- components/core/Footer/Footer.module.css | 7 -- components/core/Footer/Footer.tsx | 92 +++++++++++------------- 2 files changed, 43 insertions(+), 56 deletions(-) delete mode 100644 components/core/Footer/Footer.module.css diff --git a/components/core/Footer/Footer.module.css b/components/core/Footer/Footer.module.css deleted file mode 100644 index 573fa35bc..000000000 --- a/components/core/Footer/Footer.module.css +++ /dev/null @@ -1,7 +0,0 @@ -.root { - @apply p-0 bg-black text-white; -} - -.container { - @apply flex justify-between items-center flex-row px-4 py-5; -} diff --git a/components/core/Footer/Footer.tsx b/components/core/Footer/Footer.tsx index 536dc3006..1a5fe70cc 100644 --- a/components/core/Footer/Footer.tsx +++ b/components/core/Footer/Footer.tsx @@ -1,7 +1,7 @@ import cn from 'classnames' import { FC } from 'react' -import s from './Footer.module.css' -import { Container, Logo } from '@components/ui' +import { Logo } from '@components/ui' +import Link from 'next/link' interface Props { className?: string @@ -9,55 +9,49 @@ interface Props { } const Footer: FC = ({ className }) => { - const rootClassName = cn(s.root, className) + const rootClassName = cn( + 'flex flex-col p-6 md:py-12 md:flex-row bg-black text-white flex-wrap', + className + ) return ( ) }