Skip to content

Commit

Permalink
Fix:Added Overflow-auto and Gap for team members details (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishipatel9 authored Oct 19, 2024
1 parent 7154ae3 commit 370e128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/settings/people.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export default function Billing() {
)}
{team?.users.map((member, index) => (
<li
className="flex items-center justify-between px-10 py-4"
className="flex items-center justify-between px-10 py-4 overflow-auto gap-12"
key={index}
>
<div className="flex items-center gap-12">
Expand All @@ -276,7 +276,7 @@ export default function Billing() {
<div className="text-sm">
<div className="flex items-center gap-2">
<Folder />
<span className="text-xs text-foreground">
<span className="text-xs text-foreground text-nowrap">
{getUserDocumentCount(member.userId)}{" "}
{getUserDocumentCount(member.userId) === 1
? "document"
Expand Down

0 comments on commit 370e128

Please sign in to comment.