Skip to content

Commit

Permalink
Merge pull request #224 from bible-technology/fix/listingPage-ui-scroll
Browse files Browse the repository at this point in the history
fix for project listing page complete page scroll.
  • Loading branch information
vipinpaul authored Nov 10, 2023
2 parents 395db28 + f480f14 commit d6180be
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions renderer/src/layouts/projects/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function ProjectsLayout(props) {
}

return (
<div className="flex overflow-auto scrollbars-width absolute w-full h-full">
<div className="flex overflow-auto scrollbars-width absolute w-full h-full ">

<SideBar />

Expand Down Expand Up @@ -133,7 +133,9 @@ export default function ProjectsLayout(props) {
</header>
)}

{children}
<div className="max-h-[90%] overflow-y-auto">
{children}
</div>

</div>

Expand Down

0 comments on commit d6180be

Please sign in to comment.