Skip to content

Commit

Permalink
Fix overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GrandeJames committed Nov 9, 2023
1 parent b5e3d44 commit d470af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion my-app/src/components/navbar/SideNavbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const SideNavbar = () => {
];

const NavContainer = () => (
<ul className="menu p-5 w-72 h-screen sticky top-0 bg-base-200 pt-10 font-medium">
<ul className="menu p-5 w-72 min-h-screen sticky top-0 bg-base-200 pt-10 font-medium">
{!session && <NavContent nav={publicNav} />}
{session && session.user.role === "org_member" && (
<NavContent nav={orgMemberNav} />
Expand Down

0 comments on commit d470af5

Please sign in to comment.