We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8780686 + cf979ab commit 63b63f9Copy full SHA for 63b63f9
1 file changed
www/components/main-page.tsx
@@ -21,9 +21,9 @@ export function createMainPage<TProps extends MainPageProps = MainPageProps>(
21
<Head>
22
<base href={props.data.base} />
23
</Head>
24
- <div class="flex flex-col justify-between">
25
- <Header active={props.data.active} />
26
- <main class="h-full">
+ <div class="h-screen flex flex-col">
+ <Header className="flex justify-between" active={props.data.active} />
+ <main style={{flexGrow: 1}}>
27
<Component {...props} />
28
</main>
29
<Footer className="border(t-2 gray-200) bg-gray-100 h-32 flex flex-col gap-4 justify-center" />
0 commit comments