Skip to content

Commit 63b63f9

Browse files
authored
Merge pull request #66 from thefrontside/cl/fix-playground-layout
fix playground layout
2 parents 8780686 + cf979ab commit 63b63f9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

www/components/main-page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ export function createMainPage<TProps extends MainPageProps = MainPageProps>(
2121
<Head>
2222
<base href={props.data.base} />
2323
</Head>
24-
<div class="flex flex-col justify-between">
25-
<Header active={props.data.active} />
26-
<main class="h-full">
24+
<div class="h-screen flex flex-col">
25+
<Header className="flex justify-between" active={props.data.active} />
26+
<main style={{flexGrow: 1}}>
2727
<Component {...props} />
2828
</main>
2929
<Footer className="border(t-2 gray-200) bg-gray-100 h-32 flex flex-col gap-4 justify-center" />

0 commit comments

Comments
 (0)