Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions www/components/main-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export function createMainPage<TProps extends MainPageProps = MainPageProps>(
<Head>
<base href={props.data.base} />
</Head>
<div class="flex flex-col justify-between">
<Header active={props.data.active} />
<main class="h-full">
<div class="h-screen flex flex-col">
<Header className="flex justify-between" active={props.data.active} />
<main style={{flexGrow: 1}}>
<Component {...props} />
</main>
<Footer className="border(t-2 gray-200) bg-gray-100 h-32 flex flex-col gap-4 justify-center" />
Expand Down