diff --git a/src/components/organisms/Footer.module.scss b/src/components/organisms/Footer.module.scss
index 8c4e674..c405643 100644
--- a/src/components/organisms/Footer.module.scss
+++ b/src/components/organisms/Footer.module.scss
@@ -21,7 +21,7 @@
}
}
-.footer__actions {
+.actions {
a {
display: inline-block;
padding: 0 $spacer / 4;
@@ -36,3 +36,9 @@
}
}
}
+
+.copyright {
+ a {
+ color: inherit;
+ }
+}
diff --git a/src/components/organisms/Header.jsx b/src/components/organisms/Header.jsx
index fce3e84..ea58eb0 100644
--- a/src/components/organisms/Header.jsx
+++ b/src/components/organisms/Header.jsx
@@ -1,6 +1,7 @@
import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import { Link, StaticQuery, graphql } from 'gatsby'
+import classNames from 'classnames'
import Networks from '../molecules/Networks'
import Availability from '../molecules/Availability'
import ThemeSwitch from '../molecules/ThemeSwitch'
@@ -25,6 +26,10 @@ export default class Header extends PureComponent {
render() {
const { minimal } = this.props
+ let headerClasses = classNames([styles.header], {
+ [styles.minimal]: minimal
+ })
+
return (