Skip to content

Commit

Permalink
fix(fe: Layout): height adaptivity
Browse files Browse the repository at this point in the history
  • Loading branch information
skripnike committed Oct 16, 2023
1 parent 9ce1b0e commit 43d5dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example-frontend/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Layout: FC<Props> = ({ children }) => {
<>
<div className="bg-gypsum overflow-hidden flex flex-col min-h-screen">
<Header />
<div className="py-16 max-w-7xl mx-auto space-y-8 sm:px-6 lg:px-8 h-screen overflow-scroll">
<div className="py-16 max-w-7xl mx-auto space-y-8 sm:px-6 lg:px-8 overflow-y-auto flex-auto">
{children}
</div>
<Footer />
Expand Down

0 comments on commit 43d5dfa

Please sign in to comment.