This commit is contained in:
koreacomp5
2025-11-02 04:59:09 +09:00
parent c7f7492b9e
commit 9c28d50890
3 changed files with 26 additions and 16 deletions

View File

@@ -132,7 +132,7 @@ export function HeroBanner({ subItems, activeSubId }: { subItems?: SubItem[]; ac
{/* Pagination - Figma 스타일: 활성은 주황 바, 비활성은 회색 점 (배너 위에 오버랩) */}
{numSlides > 1 && (
<div className="pointer-events-auto absolute bottom-3 left-1/2 -translate-x-1/2 z-10 flex items-center gap-[6px]">
<div className="pointer-events-auto absolute bottom-3 left-1/2 -translate-x-1/2 z-10 flex items-center gap-[10px]">
{banners.map((_, i) => (
<button
key={i}
@@ -141,8 +141,8 @@ export function HeroBanner({ subItems, activeSubId }: { subItems?: SubItem[]; ac
onClick={() => goTo(i)}
className={
activeIndex === i
? "h-[4px] w-[18px] rounded-full bg-[#F94B37]"
: "h-[6px] w-[6px] rounded-full bg-[rgba(255,255,255,0.6)] hover:bg-white"
? "h-[6px] w-[24px] rounded-full bg-[#F94B37]"
: "h-[10px] w-[10px] rounded-full bg-[rgba(255,255,255,0.7)] hover:bg-white"
}
/>
))}