Skip to content

Commit

Permalink
Fix: 디자인 qa 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
LeHiHo committed Jan 28, 2024
1 parent bee9eb8 commit fef9ead
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Plan/PlanEditItemBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const PlanEditItemBox = ({
</div>
</div>
<div className="flex justify-between text-sm font-bold text-black">
{item.price}
{item.price.toLocaleString()}
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Plan/PlanMoveItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ const PlanMoveItem: React.FC<PlanMoveItemProps> = ({
<Dialog.Close asChild key={day}>
<button
onClick={() => handleMoveItem(date[index])}
className="relative mb-[12px] flex flex-shrink-0 flex-grow-0 justify-start gap-2">
className="mb-[12px] flex h-[24px] items-center gap-[8px]">
<PaperIcon />
<p className="flex-shrink-0 flex-grow-0 text-left text-[15px] font-medium text-[#1e1e1e]">
<p className="mb-[5px] h-[18px] text-[15px] font-medium text-[#1e1e1e]">
{day}
</p>
</button>
Expand Down

0 comments on commit fef9ead

Please sign in to comment.