Skip to content

Commit

Permalink
Fix overflow on firefox (#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmohan authored Jun 1, 2024
1 parent 0b228c6 commit 5c32c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/main/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function MainPage() {
<div className="flex grow flex-col overflow-x-clip">
<ImportFolderModal />
<TopNav />
<div className="shoko-scrollbar scroll-gutter grow overflow-y-auto py-6" ref={scrollRef}>
<div className="shoko-scrollbar scroll-gutter grow overflow-y-auto py-6 contain-strict" ref={scrollRef}>
<div className="scroll-no-gutter mx-auto flex min-h-full w-full max-w-[120rem] flex-col px-6">
<Outlet context={{ scrollRef }} />
</div>
Expand Down

0 comments on commit 5c32c55

Please sign in to comment.