Sticky Footer in GatsbyJS using Flexbox

Sticky Footer in GatsbyJS using Flexbox

I have recently developed some static websites based on GatsbyJS which have a sticky footer. A sticky footer is always positioned on the bottom of the page, even for sparse content.

Unfortunately, I had some struggle to solve this and I, therefore, want to share my learnings with you.

Non-GatsbyJS solution

In a traditional HTML, CSS, JavaScript application we can use different ways to implement such a fixed footer but I prefer the Flexbox solution of Philip Walton.

Flexbox provides a nice solution for the sticky footer problem. It can be used to layout content in horizontal and vertical direction. So we just need to wrap the vertical sections (header, content, footer) in a flex container and choose which one should expand. In our case, we want the content to automatically take up all the available space in the container.

Following, you can see his solution:

<body class="site">
  <header></header>
  <main class="site-content"></main>
  <footer></footer>
</body>

The corresponding CSS classes:

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

Take a look at the live demo.

GatsbyJS solution

GatsbyJS is based on React and we, therefore, have to think different.

The basic layout.js file from the official GatsbyJS default starter has a similar structure like the following example:

const Layout = ({ children }) => (
  <StaticQuery
    query={graphql`
      query SiteTitleQuery {
        site {
          siteMetadata {
            title
          }
        }
      }
    `}
    render={data => (
      <>
        <Helmet
          title={data.site.siteMetadata.title}
          meta={[
            { name: 'description', content: 'Sample' },
            { name: 'keywords', content: 'sample, something' },
          ]}
        >
          <html lang="en" />
        </Helmet>
        <Header siteTitle={data.site.siteMetadata.title} />
        <div>{children}</div>
        <Footer />
      </>
    )}
  />
);

So if we would style &lt;body&gt;&lt;/body&gt; and the &lt;div&gt;{children}&lt;/div&gt; as proposed in Philip Walton’s solution it would not work.

But why? Because it would mean that the &lt;Footer/&gt; component would be included in the &lt;body&gt;&lt;/body&gt;.

To solve the problem I added a new &lt;div&gt;&lt;/div&gt; tag which is the equivalent to the &lt;body&gt;&lt;/body&gt; tag of the above mentioned example.

So my layout.js looks this way:

const Layout = ({ children }) => (
  <StaticQuery
    query={graphql`
      query SiteTitleQuery {
        site {
          siteMetadata {
            title
          }
        }
      }
    `}
    render={data => (
      <>
        <Helmet
          title={data.site.siteMetadata.title}
          meta={[
            { name: 'description', content: 'Sample' },
            { name: 'keywords', content: 'sample, something' },
          ]}
        >
          <html lang="en" />
        </Helmet>
        <div className="site">
          <Header siteTitle={data.site.siteMetadata.title} />
          <div className="site-content">{children}</div>
          <Footer />
        </div>
      </>
    )}
  />
);

export default Layout;

The CSS:

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-content {
  flex-grow: 1;
}

You can see a working example on my GitHub Traffic Viewer website. The first page shows a spare content but the footer is stuck to the bottom. If you sign in and see the result list, the footer is also shown on the bottom of the page.

I hope this post is also helpful for you if you try to implement a sticky footer in a GatsbyJS website.

Happy Coding!

Originally published at www.mokkapps.de.

Did you find this article valuable?

Support Michael Hoffmann by becoming a sponsor. Any amount is appreciated!