Skip to content

Commit

Permalink
fix: fixed home page not scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
TinsFox committed Sep 7, 2024
1 parent 269465a commit e72d719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<title><%- title %></title>
</head>

<body class="h-screen overflow-hidden font-sans antialiased bg-background">
<body class="h-screen font-sans antialiased bg-background">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/(admin)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function Component() {
}
}
return (
<div className="h-screen">
<div className="h-screen overflow-hidden">
<ResizablePanelGroup
direction="horizontal"
onLayout={(sizes: number[]) => {
Expand Down

0 comments on commit e72d719

Please sign in to comment.