We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe1955 commit 0e3f41cCopy full SHA for 0e3f41c
1 file changed
apps/web/src/features/admin/pages/ManageUsersPage.tsx
@@ -99,8 +99,8 @@ export const ManageUsersPage = () => {
99
minRows={15}
100
onEntryClick={setSelectedUser}
101
/>
102
- <Sheet.Content>
103
- <Sheet.Header>
+ <Sheet.Content className="flex flex-col p-0">
+ <Sheet.Header className="px-6 pt-6">
104
<Sheet.Title>{selectedUser?.username}</Sheet.Title>
105
<Sheet.Description>
106
{t({
@@ -109,7 +109,7 @@ export const ManageUsersPage = () => {
109
})}
110
</Sheet.Description>
111
</Sheet.Header>
112
- <Sheet.Body className="grid h-full gap-4">
+ <Sheet.Body className="flex-grow overflow-y-scroll px-6 pb-6">
113
<WithFallback
114
Component={UpdateUserForm}
115
minDelay={1000}
0 commit comments