Skip to content

Commit

Permalink
Merge pull request #1782 from ever-co/bug/task-screen-manage-assignee…
Browse files Browse the repository at this point in the history
…s-height-scroll

limited height and added scroll to manage assignees
  • Loading branch information
evereq authored Nov 14, 2023
2 parents 0d859ec + dc7c128 commit f472888
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ const ManageMembersPopover = (memberList: OT_Member[], task: ITeamTask | null) =
leaveTo="opacity-0 translate-y-1"
>
<Popover.Panel
className="z-10 absolute right-0 bg-white rounded-2xl min-w-[9.5rem] flex flex-col pl-4 pr-4 pt-2 pb-2 mt-10 mr-10 dark:bg-[#1B1D22] dark:border-[0.125rem] border-[#0000001A] dark:border-[#26272C]"
className="z-10 absolute right-0 bg-white rounded-2xl min-w-[9.5rem] flex flex-col px-4 py-2 mt-10 mr-10 dark:bg-[#1B1D22] dark:border-[0.125rem] border-[#0000001A] dark:border-[#26272C]"
style={{ boxShadow: 'rgba(0, 0, 0, 0.12) -24px 17px 49px' }}
>
{({ close }) => (
<div className="">
<div className="max-h-72 scrollbar-hide overflow-y-scroll">
{assignedTaskMembers.map((member, index) => (
<div
className="flex items-center justify-between w-auto h-8 gap-1 mt-1 hover:cursor-pointer hover:brightness-95 dark:hover:brightness-105"
Expand Down

0 comments on commit f472888

Please sign in to comment.