Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for project listing page complete page scroll. #224

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading