Styled footer a touch

This commit is contained in:
2018-06-29 08:07:33 +10:00
parent dfc78cf102
commit 786982d432
4 changed files with 26 additions and 11 deletions

View File

@ -30,11 +30,9 @@ import { PageBoundary } from './../page/Page';
const FooterLink = function(props) {
let key = "footer.links." + props.title;
return (
<span className="c-footer__link">
<NavLink to={ props.to }>
{ Language.get(key) }
</NavLink>
</span>
<NavLink to={ props.to } className="c-footer__link">
{ Language.get(key) }
</NavLink>
);
}