Skip to content

Commit

Permalink
fix: overflow scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
JLin-99 committed Nov 13, 2023
1 parent 49297dd commit d460547
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This pr requires the following packages to be installed:
- `package2`
The packages are used for `reason1` and `reason2`.
Because of this, you must run `pnpm i` before starting.
Because of this, you must run `npm i` before starting.
-->

## 📷 Screenshots
Expand Down
2 changes: 1 addition & 1 deletion resources/js/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const Layout = () => {
return (
<div className="h-screen flex-col overflow-hidden bg-gray-900 md:flex md:flex-row">
<Navbar />
<main className="h-full grow overflow-y-scroll">
<main className="h-full grow overflow-y-auto">
<Outlet />
</main>
</div>
Expand Down

0 comments on commit d460547

Please sign in to comment.