Skip to content

Instantly share code, notes, and snippets.

@bietdoikiem
Forked from dmurawsky/index.js
Created November 6, 2021 16:31
Show Gist options
  • Save bietdoikiem/a7d63ce97d07ca889d2065499f8289c9 to your computer and use it in GitHub Desktop.
Save bietdoikiem/a7d63ce97d07ca889d2065499f8289c9 to your computer and use it in GitHub Desktop.
How to make a page full height in Next.js
const FullHeightPage = () => (
<div>
Hello World!
<style global jsx>{`
html,
body,
body > div:first-child,
div#__next,
div#__next > div {
height: 100%;
}
`}</style>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment