Skip to content

Instantly share code, notes, and snippets.

@Denver-sn
Forked from dmurawsky/index.js
Created May 4, 2023 02:43
Show Gist options
  • Save Denver-sn/92bdc44f56e826acba560625c404c72f to your computer and use it in GitHub Desktop.
Save Denver-sn/92bdc44f56e826acba560625c404c72f 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