Skip to content

Instantly share code, notes, and snippets.

@dmurawsky
Last active April 22, 2025 13:06
Show Gist options
  • Save dmurawsky/d45f068097d181c733a53687edce1919 to your computer and use it in GitHub Desktop.
Save dmurawsky/d45f068097d181c733a53687edce1919 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>
)
@tiagossa1
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment