Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion web/app/routes/app_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function AppLayoutContent() {
<div
className={
onMemberPage
? "flex flex-1 flex-col overflow-hidden"
? "flex flex-1 flex-col overflow-y-auto"
: undefined
}
>
Expand Down
4 changes: 2 additions & 2 deletions web/app/routes/member.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ export default function MemberPage() {

return (
<div
className="flex h-full flex-col overflow-hidden px-4 pb-3 pt-5 text-black"
className="flex min-h-full flex-col px-4 pb-3 pt-5 text-black"
style={{ fontFamily: "Inter, sans-serif" }}
>
<div className="mx-auto flex w-[84vw] max-w-[1400px] flex-1 flex-col min-h-0 pb-2">
Expand Down Expand Up @@ -930,7 +930,7 @@ export default function MemberPage() {
) : null}
</section>

<div className="flex flex-1 items-stretch justify-center gap-6 min-h-0">
<div className="flex flex-1 items-stretch justify-center gap-6 min-h-[560px]">
{/* Referrals + checklists column */}
<div className="flex w-[25vw] min-w-[260px] flex-col gap-4 overflow-y-auto">
<CollapsibleSection
Expand Down