fix. [디자인 QA] 네비게이션 인디케이터가 비활성 상태일 경우 배경을 제외한 이미지에 opacity: 0.5 적용

This commit is contained in:
clkim
2025-11-24 13:41:40 +09:00
parent b1325ec800
commit 34145a3a62
2 changed files with 10 additions and 14 deletions

View File

@@ -199,6 +199,13 @@ onBeforeUnmount(() => {
.thumbnail-slide.is-active::after {
@apply border-[var(--pagination-active)];
}
.thumbnail-slide:hover img,
.thumbnail-slide.is-active img {
@apply opacity-100;
}
.thumbnail-slide img {
@apply opacity-50 transition-opacity duration-200 ease-in-out;
}
/* 기본 버전 스타일 */
.thumbnail-carousel.thumbnail-default,
@@ -216,7 +223,7 @@ onBeforeUnmount(() => {
@apply right-0;
}
.thumbnail-carousel.thumbnail-default .thumbnail-slide {
@apply aspect-[1/1] w-[8px] md:w-[80px] backdrop-blur-[30px]
@apply aspect-[1/1] w-[8px] md:w-[80px] backdrop-blur-[15px]
after:hidden md:after:block;
}
.thumbnail-carousel.thumbnail-default .thumbnail-slide:hover img,