diff --git a/src/components/Footer.js b/src/components/Footer.js index 071c4b0a9..1117fee1c 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -14,42 +14,32 @@ const Footer = ({ className }) => { return ( ); diff --git a/src/components/Footer.module.scss b/src/components/Footer.module.scss index 8b713b7ae..bf9698626 100644 --- a/src/components/Footer.module.scss +++ b/src/components/Footer.module.scss @@ -1,21 +1,16 @@ .footer { - background-color: var(--color-neutrals-800); - color: var(--color-teal-300); - padding: 1.5rem 0; + display: flex; + justify-content: space-between; + align-items: center; + color: var(--color-neutrals-600); font-size: 0.75rem; z-index: 1; - :global(.site-container) { - padding: 0 2rem; + a { + color: currentColor; } } -.container { - display: flex; - justify-content: space-between; - align-items: center; -} - .left { display: flex; align-items: center; @@ -30,9 +25,9 @@ } .copyright { - margin-left: 1rem; - padding-left: 1rem; - border-left: 1px dotted var(--color-neutrals-700); + margin-left: 0.5rem; + padding-left: 0.5rem; + border-left: 1px dotted var(--color-neutrals-400); @media (max-width: 760px) { border-left: none; @@ -45,7 +40,6 @@ display: flex; a { - color: var(--color-teal-300); padding-right: 0; display: flex; align-items: center; diff --git a/src/components/Layout.js b/src/components/Layout.js index baa03e316..65afe4c44 100644 --- a/src/components/Layout.js +++ b/src/components/Layout.js @@ -22,20 +22,16 @@ const Layout = ({ children }) => { toggle={() => setIsMobileNavOpen(!isMobileNavOpen)} />
- -
+
- {children} -
+
{children}
+
-