We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51667f7 commit 23620cbCopy full SHA for 23620cb
governance/xc_admin/packages/xc_admin_frontend/components/layout/Layout.tsx
@@ -4,9 +4,9 @@ import Header from './Header'
4
5
const Layout = ({ children }: { children: React.ReactNode }) => {
6
return (
7
- <div className="relative overflow-hidden">
+ <div className="flex flex-col min-h-screen relative overflow-hidden">
8
<Header />
9
- <main>{children}</main>
+ <main className="flex-grow">{children}</main>
10
<Footer />
11
</div>
12
)
0 commit comments