From 902995e45a12e63a7ec9db8cac7c76c08fd7f71d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=A4=EB=A6=AC?= <1gyn093@gmail.com> Date: Tue, 5 Aug 2025 20:53:26 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20bid-form=20=EC=82=AC=EC=9D=B4=EC=A7=95?= =?UTF-8?q?=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/auction-detail/bid-form/input.tsx | 13 +++++++++---- .../auction-detail/bid-table/bid-table.tsx | 2 +- .../auction-detail/bid-table/bidder-avatar.tsx | 2 +- .../src/components/auction-detail/bid-table/row.tsx | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/apps/web/src/components/auction-detail/bid-form/input.tsx b/apps/web/src/components/auction-detail/bid-form/input.tsx index 3d88ce20..0696f6bf 100644 --- a/apps/web/src/components/auction-detail/bid-form/input.tsx +++ b/apps/web/src/components/auction-detail/bid-form/input.tsx @@ -7,6 +7,7 @@ import { Button } from '@/components/ui/button'; import { useAuctionDetail } from '@/hooks/queries/auction'; +import { cn } from '@/lib/cn'; import { formatCurrency, formatCurrencyWithUnit, formatToKoreanUnit } from '@/lib/utils/price'; import { BidInputProps } from '@/types/bid'; @@ -15,7 +16,7 @@ const bidInputWrapper = tv({ base: 'transition-all duration-600 overflow-hidden px-1', variants: { open: { - true: 'pt-2 max-h-[150px] translate-y-0', + true: 'pt-2 max-h-[160px] translate-y-0', false: 'max-h-0 translate-y-4 pointer-events-none', }, }, @@ -76,13 +77,17 @@ const BidFormInput = ({ return (