Skip to content

Commit

Permalink
chore: rebase 간 충돌 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
PMtHk committed Nov 28, 2024
1 parent 7096336 commit b3b8f3b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/client/src/components/PlanningPokerFloatingButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
>
<AnimatePresence>
{users.map((user, index) => (
Expand Down Expand Up @@ -307,7 +307,7 @@ function PlanningPokerFloatingButton() {
)}
</AnimatePresence>

<div className="fixed bottom-28 right-24" role="button" aria-expanded={isExpanded}>
<div className="fixed bottom-28 right-24 z-50" role="button" aria-expanded={isExpanded}>
<ToggleCard isExpanded={isExpanded} toggleExpand={toggleExpand} />
{CARDS.map((card, index) => {
const baseY = isExpanded ? 0 : -(index + 1) * 1;
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/pages/TaskDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function TaskDetail() {

<motion.div
key="panel"
className="bg-surface fixed inset-y-0 right-0 z-50 w-full border-l md:w-2/3"
className="bg-surface fixed inset-y-0 right-0 z-40 w-full border-l md:w-2/3"
initial={{ x: '100%' }}
animate={{ x: 0 }}
exit={{ x: '100%' }}
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/routes/_auth.$project.board.$taskId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function ErrorComponent({ error, reset }: { error: Error; reset: () => vo

<motion.div
key="panel"
className="bg-surface fixed inset-y-0 right-0 z-50 w-full border-l md:w-2/3"
className="bg-surface fixed inset-y-0 right-0 z-40 w-full border-l md:w-2/3"
initial={{ x: '100%' }}
animate={{ x: 0 }}
exit={{ x: '100%' }}
Expand Down
1 change: 0 additions & 1 deletion apps/client/src/routes/_auth.$project.board.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Suspense } from 'react';
import { createFileRoute, Outlet } from '@tanstack/react-router';
import Board from '@/pages/Board.tsx';
import PlanningPokerFloatingButton from '@/components/PlanningPokerFloatingButton';
import { boardAPI } from '@/features/project/board/api.ts';
import { Board } from '@/pages/Board.tsx';
Expand Down

0 comments on commit b3b8f3b

Please sign in to comment.