Skip to content

Commit

Permalink
fix layout
Browse files Browse the repository at this point in the history
  • Loading branch information
aabedraba committed Oct 3, 2023
1 parent 0b66629 commit d7f4fd8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions apps/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,18 @@ export const metadata: Metadata = {
const RootLayout = ({ children }: { children: React.ReactNode }) => (
<html
lang="en"
className={`h-full ${roboto.variable} ${robotoMono.variable} ${ibmPlexSans.variable}`}
className={`${roboto.variable} ${robotoMono.variable} ${ibmPlexSans.variable}`}
>
<Suspense>
<PostHogPageview />
</Suspense>
<ModalProvider>
<PHProvider>
<body className="container mx-auto flex h-full flex-col justify-between text-base">
<body className="container mx-auto flex h-screen flex-col text-base">
<Header />
{children}
<div className="flex grow items-center justify-center">
{children}
</div>
<Footer />
</body>
</PHProvider>
Expand Down

0 comments on commit d7f4fd8

Please sign in to comment.