Compare commits

...

1 Commits

Author SHA1 Message Date
Henry
de87f6237e fix: prevent ellipses from showing through member dropdown menu 2026-02-02 20:03:52 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ export default function Dropdown({
leaveFrom="transform opacity-100 scale-100"
leaveTo="transform opacity-0 scale-95"
>
<Menu.Items className="absolute right-0 z-50 mt-2 w-56 origin-top-right rounded-md border border-light-200 bg-light-50 p-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none dark:border-dark-400 dark:bg-dark-300">
<Menu.Items className="absolute right-0 z-[100] isolate mt-2 w-56 origin-top-right rounded-md border border-light-200 bg-white p-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none dark:border-dark-400 dark:bg-dark-300">
<div className="flex flex-col">
{items.map((item) => (
<Menu.Item key={item.label} disabled={item.disabled}>

View File

@@ -212,7 +212,7 @@ export default function MembersPage() {
</div>
<div
className={twMerge(
"relative z-50",
"relative",
(workspace.role !== "admin" || showSkeleton) && "hidden",
)}
>