Skip to content

Commit 3847bef

Browse files
authored
🖱️ fix: Role and Group Scroll Areas (#5)
The roles/groups tab content wrapper was not a flex container, so child flex-1 constraints were ignored and overflow-y-auto never triggered — the list was clipped with no scrollbar.
1 parent 97d06de commit 3847bef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/access/AccessPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function AccessPage({
3434
</Tabs>
3535
)}
3636

37-
<div className="min-h-0 flex-1 overflow-hidden pt-3">
37+
<div className="flex min-h-0 flex-1 flex-col overflow-hidden pt-3">
3838
{activeTab === 'groups' && canReadGroups && (
3939
<GroupsTab onCreateGroup={() => setCreateGroupOpen(true)} />
4040
)}

0 commit comments

Comments
 (0)