Footer no longer needs to float.

This commit is contained in:
2018-03-13 05:21:24 +11:00
parent 395713b4cd
commit a51984abb7
2 changed files with 8 additions and 17 deletions

View File

@ -31,9 +31,6 @@ class Footer extends React.Component {
render() {
let year = new Date().getFullYear();
return (
<div className="c-footer__container">
<div className="c-footer__ghost"></div>
<footer className="c-footer">
<span className="c-footer__copyright">
2012 ~ {year} | Dominic Masters.
@ -43,7 +40,6 @@ class Footer extends React.Component {
<FooterLink to="/privacy-policy">Privacy Policy</FooterLink>
</nav>
</footer>
</div>
)
}
}

View File

@ -13,17 +13,12 @@
$c-footer--text-color: $s-color--text;
$c-footer--background-color: $s-color--background-default;
.c-footer__ghost {
min-height: 3em;
}
.c-footer {
width: 100%;
background: $c-footer--background-color;
@extend %t-flexbox;
@include t-flex-wrap(wrap);
position: absolute;
bottom: 0;
}
.c-footer__copyright {