diff --git a/website/src/components/Footer.css b/website/src/components/Footer.css index 99bc2c65..2061559a 100644 --- a/website/src/components/Footer.css +++ b/website/src/components/Footer.css @@ -1,10 +1,17 @@ -.Footer { - background: #1c2126; - min-height: 100px; - color: rgba(255, 255, 255, 0.6); - padding: 20px 0; +footer { + display: flex; + padding: 20px 15px; + padding-left: 87px; + z-index: 4; + align-items: center; + background-color: white; } -.Footer a { - color: white; +footer a { + margin: 0 15px; + color: #606770; +} + +footer a:hover { + color: #8FD0C6; } diff --git a/website/src/components/Footer.js b/website/src/components/Footer.js index 83a8d27a..9a44aa3c 100644 --- a/website/src/components/Footer.js +++ b/website/src/components/Footer.js @@ -11,11 +11,13 @@ */ import React from 'react'; -import Padded from './Padded'; +import Link from 'gatsby-link'; import './Footer.css'; export default () => ( );