Skip to content

Commit

Permalink
fix: removed overflow on body
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleryy committed Nov 11, 2023
1 parent 28b1db7 commit 211427f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/site/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>
<body className="overflow-y-hidden overflow-x-hidden">
{/* reference: https://github.com/pmndrs/react-three-next */}
<Layout>{children}</Layout>
</body>
Expand Down

0 comments on commit 211427f

Please sign in to comment.