I have both header and footer enabled in my documentation.
However, I found that pages have scrollbar even the content is very small. That was due to the min-height calculation
class="min-h-[calc(100vh-var(--ui-header-height))]"
Because of the footer, the page height is = 64px (header) + <100vh - 64px>(main) + 64px (footer). So its always 100vh + 64px.
I have both header and footer enabled in my documentation.
However, I found that pages have scrollbar even the content is very small. That was due to the min-height calculation
class="min-h-[calc(100vh-var(--ui-header-height))]"
Because of the footer, the page height is = 64px (header) + <100vh - 64px>(main) + 64px (footer). So its always 100vh + 64px.