+
-
+
setIsWelcomeOpen(false)}
/>
)}
-
+
);
}
diff --git a/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasketCarousel.tsx b/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasketCarousel.tsx
index 06d5632c..1da3f44c 100644
--- a/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasketCarousel.tsx
+++ b/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasketCarousel.tsx
@@ -10,6 +10,7 @@ import { cn } from '@/utils/cn';
import type { TournamentPendingItemT } from '../../../_common/_types/tournamentResponse';
import {
BASKET_CAROUSEL_SLIDE_SIZE_PERCENT,
+ BASKET_STACK_GAP,
ITEMS_PER_BASKET,
} from '../../_consts/tournamentItemBasket';
import { getActiveBasketCount, getBasketIndexForLastItem } from '../../_utils/tournamentItemBasket';
@@ -92,9 +93,7 @@ function TournamentItemBasketCarousel({
const { ref: containerRef, height: containerHeight } = useContainerHeight();
const { ref: bottomSlotRef, height: bottomSlotHeight } = useContainerHeight();
- const gap = isCarouselEnabled ? 16 : 0;
-
- const bottomSlotBlockHeight = bottomSlot ? (bottomSlotHeight ?? 0) + gap : 0;
+ const bottomSlotBlockHeight = bottomSlot ? (bottomSlotHeight ?? 0) + BASKET_STACK_GAP : 0;
let basketMaxHeight: number | undefined;
if (containerHeight) {
@@ -105,21 +104,19 @@ function TournamentItemBasketCarousel({
return (
-
-
- {bottomSlot && (
-
- {bottomSlot}
-
- )}
+
+
+
+
+ {bottomSlot &&
{bottomSlot}
}
);
}
@@ -154,11 +151,7 @@ function TournamentItemBasketCarousel({
- {bottomSlot && (
-
- {bottomSlot}
-
- )}
+ {bottomSlot &&
{bottomSlot}
}
);
}
diff --git a/apps/web/src/app/tournament/[id]/create/_consts/tournamentItemBasket.ts b/apps/web/src/app/tournament/[id]/create/_consts/tournamentItemBasket.ts
index 7f602533..fac7b4ac 100644
--- a/apps/web/src/app/tournament/[id]/create/_consts/tournamentItemBasket.ts
+++ b/apps/web/src/app/tournament/[id]/create/_consts/tournamentItemBasket.ts
@@ -8,4 +8,7 @@ export const BASKET_COUNT = 4;
export const PREV_ITEM_COUNT_KEY = 'prevItemCount';
/** 매인 캐러셀 너비가 화면에서 차지하는 퍼센트 (인접 바구니는 100% - 이 값만큼 뺀 나머지 너비를 인접 바구니가 차지) */
-export const BASKET_CAROUSEL_SLIDE_SIZE_PERCENT = 90;
+export const BASKET_CAROUSEL_SLIDE_SIZE_PERCENT = 80;
+
+/** 카트와 그 아래 개수 라벨 사이 간격(px) */
+export const BASKET_STACK_GAP = 16;
From 0dd321fc519978ffdfaca986152601d7b0e2f857 Mon Sep 17 00:00:00 2001
From: kanghaeun <145974230+kanghaeun@users.noreply.github.com>
Date: Sun, 23 Aug 2026 21:33:29 +0900
Subject: [PATCH 4/6] =?UTF-8?q?style:=20=ED=86=A0=EB=84=88=EB=A8=BC?=
=?UTF-8?q?=ED=8A=B8=20=EC=95=84=EC=9D=B4=ED=85=9C=20=EC=9E=A5=EB=B0=94?=
=?UTF-8?q?=EA=B5=AC=EB=8B=88=20=EC=83=81=ED=83=9C=20=EB=A9=94=EC=8B=9C?=
=?UTF-8?q?=EC=A7=80=20=EB=B0=8F=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=88=98?=
=?UTF-8?q?=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../TournamentItemBasketStatus.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket-status/TournamentItemBasketStatus.tsx b/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket-status/TournamentItemBasketStatus.tsx
index f27e7007..cf32545c 100644
--- a/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket-status/TournamentItemBasketStatus.tsx
+++ b/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket-status/TournamentItemBasketStatus.tsx
@@ -10,7 +10,7 @@ function TournamentItemBasketStatus({ isProcessing, count }: TournamentItemBaske
if (isProcessing) return '담는 중...';
if (count === 0) return '후보를 장바구니에 담아보세요';
if (count < 2) return '최소 2개 이상 담아주세요';
- return `${count}/32`;
+ return `${count}/32개`;
})();
const isBlue = count < 2;
@@ -19,7 +19,7 @@ function TournamentItemBasketStatus({ isProcessing, count }: TournamentItemBaske
Date: Sun, 23 Aug 2026 21:52:44 +0900
Subject: [PATCH 5/6] =?UTF-8?q?style:=20=ED=86=A0=EB=84=88=EB=A8=BC?=
=?UTF-8?q?=ED=8A=B8=20=EA=B0=80=EC=9D=B4=EB=93=9C=20=ED=8C=9D=EC=98=A4?=
=?UTF-8?q?=EB=B2=84=20=EC=95=84=EC=9D=B4=EC=BD=98=20=ED=81=AC=EA=B8=B0=20?=
=?UTF-8?q?=EC=A1=B0=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../_components/tournament-header/TournamentGuidePopover.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/web/src/app/tournament/[id]/create/_components/tournament-header/TournamentGuidePopover.tsx b/apps/web/src/app/tournament/[id]/create/_components/tournament-header/TournamentGuidePopover.tsx
index 2d2f2105..0bc81bbb 100644
--- a/apps/web/src/app/tournament/[id]/create/_components/tournament-header/TournamentGuidePopover.tsx
+++ b/apps/web/src/app/tournament/[id]/create/_components/tournament-header/TournamentGuidePopover.tsx
@@ -23,7 +23,7 @@ function TournamentGuidePopover() {
{GUIDE_ITEMS.map(({ icon: Icon, text }) => (
-
-
+
{text}
))}
From 9cecda83819726531ecaab337ca0a1843ed01be2 Mon Sep 17 00:00:00 2001
From: kanghaeun <145974230+kanghaeun@users.noreply.github.com>
Date: Sun, 23 Aug 2026 22:13:35 +0900
Subject: [PATCH 6/6] =?UTF-8?q?style:=20=EC=83=81=ED=92=88=20=EC=9D=B4?=
=?UTF-8?q?=EB=AF=B8=EC=A7=80=20=EB=B0=8F=20=EC=9E=A5=EB=B0=94=EA=B5=AC?=
=?UTF-8?q?=EB=8B=88=20=EB=B2=84=ED=8A=BC=20=ED=85=8C=EB=91=90=EB=A6=AC=20?=
=?UTF-8?q?=EB=91=90=EA=BB=98=20=EC=A1=B0=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../create/_components/product-image/productImage.const.ts | 2 +-
.../tournament-item-basket/TournamentItemBasket.tsx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/apps/web/src/app/tournament/[id]/create/_components/product-image/productImage.const.ts b/apps/web/src/app/tournament/[id]/create/_components/product-image/productImage.const.ts
index 95edd978..350431ce 100644
--- a/apps/web/src/app/tournament/[id]/create/_components/product-image/productImage.const.ts
+++ b/apps/web/src/app/tournament/[id]/create/_components/product-image/productImage.const.ts
@@ -12,6 +12,6 @@ export const SIZE_STYLE: Record<
sm: {
dimension: 68,
radius: 'rounded-[16px]',
- decoration: 'border-[1.85px] border-white shadow-[0_0_8px_rgba(0,0,0,0.16)]',
+ decoration: 'border-[2px] border-white shadow-[0_0_8px_rgba(0,0,0,0.16)]',
},
};
diff --git a/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasket.tsx b/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasket.tsx
index c4690aa8..372d264b 100644
--- a/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasket.tsx
+++ b/apps/web/src/app/tournament/[id]/create/_components/tournament-item-basket/TournamentItemBasket.tsx
@@ -52,7 +52,7 @@ function TournamentItemBasket({