From b85c1bcab080505e4ec3022537e3fad9679b0a0e Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Fri, 14 Nov 2025 13:42:56 -0500 Subject: [PATCH 1/2] fix(clerk-js): Ensure scrollbox fills the available height --- .../clerk-js/src/ui/elements/ProfileCard/ProfileCardContent.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/clerk-js/src/ui/elements/ProfileCard/ProfileCardContent.tsx b/packages/clerk-js/src/ui/elements/ProfileCard/ProfileCardContent.tsx index c498a07c7b8..5b3a83f0040 100644 --- a/packages/clerk-js/src/ui/elements/ProfileCard/ProfileCardContent.tsx +++ b/packages/clerk-js/src/ui/elements/ProfileCard/ProfileCardContent.tsx @@ -44,6 +44,7 @@ export const ProfileCardContent = (props: ProfileCardContentProps) => { borderColor: t.colors.$borderAlpha150, marginBlock: '-1px', marginInlineEnd: '-1px', + flex: 1, })} data-clerk-profile-scroll-box-root={scrollBoxId} > From 6363150a4d53a3396056e9f2740cfba194397223 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Fri, 14 Nov 2025 13:43:34 -0500 Subject: [PATCH 2/2] add changeset --- .changeset/proud-months-go.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/proud-months-go.md diff --git a/.changeset/proud-months-go.md b/.changeset/proud-months-go.md new file mode 100644 index 00000000000..ef8c0e9b4ec --- /dev/null +++ b/.changeset/proud-months-go.md @@ -0,0 +1,5 @@ +--- +'@clerk/clerk-js': patch +--- + +Ensure scrollbox height fills the available space.