Tailwind recommends to add h-full to html and h-full overflow-hidden to body.
This makes their internal flex components scroll with overflow-y-auto.
But since <NuxtPage> adds a div with <div id="__nuxt" that wraps the whole page, this breaks the scrolling.
I can't for the life of my understand how to ... add a class to that div or prevent it from interrupting the scrolling behavior.
Is there a way to customie <NuxtPage> component? or make it not be a div?