Added footer styles via footer-text

This commit is contained in:
Cooper Hollmaier
2020-10-28 12:18:55 -07:00
committed by Vishnu Ks
parent a39e38c580
commit 9c966cc21e
3 changed files with 5 additions and 1 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -30,7 +30,7 @@ const Layout = ({ children }) => {
<Header siteTitle={data.site.siteMetadata.title} />
<Container fluid>
<main>{children}</main>
<footer>
<footer class ="footer-text">
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>

View File

@@ -1,3 +1,7 @@
.custom-header{
position: fixed;
}
.footer-text {
text-align:center;
padding-bottom:1 rem;
}