diff --git a/apps/client/src/components/PlanningPokerFloatingButton.tsx b/apps/client/src/components/PlanningPokerFloatingButton.tsx index 2054a4b..1162836 100644 --- a/apps/client/src/components/PlanningPokerFloatingButton.tsx +++ b/apps/client/src/components/PlanningPokerFloatingButton.tsx @@ -247,7 +247,7 @@ function PlanningPokerFloatingButton() { animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: 10 }} transition={{ duration: 0.3 }} - className="fixed bottom-32 right-12 flex flex-col gap-2" + className="fixed bottom-32 right-12 z-50 flex flex-col gap-2" > {users.map((user, index) => ( @@ -307,7 +307,7 @@ function PlanningPokerFloatingButton() { )} -
+
{CARDS.map((card, index) => { const baseY = isExpanded ? 0 : -(index + 1) * 1; diff --git a/apps/client/src/pages/TaskDetail.tsx b/apps/client/src/pages/TaskDetail.tsx index 9854c81..4790302 100644 --- a/apps/client/src/pages/TaskDetail.tsx +++ b/apps/client/src/pages/TaskDetail.tsx @@ -63,7 +63,7 @@ export function TaskDetail() { vo