chore: fix sticky footer issue

This commit is contained in:
Sean Norwood 2022-04-14 20:33:53 +00:00
parent d305c94989
commit d86fcd4a8f
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { Nav } from "./Nav";
export const Layout = ({ children }) => {
return (
<>
<div className="main-content">
<div style={{ minHeight: "100vh" }} className="main-content">
<Nav />
{children}
</div>