fix(layout): centered layout with responsive principles applied

This commit is contained in:
Thomas Ibarra
2019-07-30 17:23:59 -05:00
parent 674d304408
commit 2e85d8e9f1
5 changed files with 22 additions and 21 deletions
+6 -3
View File
@@ -6,9 +6,12 @@ export function Footer() {
return (
<SC.FooterWrapper>
<Container>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>
<p>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>
</p>
</Container>
</SC.FooterWrapper>
)
+5 -1
View File
@@ -1,4 +1,8 @@
import { Link } from "gatsby"
import styled from "styled-components"
export const FooterWrapper = styled.footer``
export const FooterWrapper = styled.footer`
& a {
display: inline;
}
`