feat: improvement org member list (#13859)

* fix: sticky action bar and align checkbox

* feat: make teams filterable and clickable, total members

* fix: update members count

---------

Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
This commit is contained in:
Amit Sharma
2024-03-05 11:09:14 +00:00
committed by GitHub
co-authored by sean-brydon Udit Takkar
parent e39bf37f91
commit 01ac2e640a
3 changed files with 23 additions and 12 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ const TableHeader = React.forwardRef<HTMLTableSectionElement, React.HTMLAttribut
({ className, ...props }, ref) => (
<thead
ref={ref}
className={classNames("[&_tr]:bg-subtle md:sticky md:top-[4.25rem] md:z-10 [&_tr]:border-b", className)}
className={classNames("[&_tr]:bg-subtle md:z-10 [&_tr]:border-b", className)}
{...props}
/>
)
@@ -59,7 +59,7 @@ const TableHead = React.forwardRef<HTMLTableCellElement, React.ThHTMLAttributes<
<th
ref={ref}
className={classNames(
"text-default h-12 px-4 text-left align-middle font-medium [&:has([role=checkbox])]:pr-0",
"text-default h-12 px-2 text-left align-middle font-medium [&:has([role=checkbox])]:pr-0",
className
)}
{...props}