From 2998f2bb986c92410938931cf15890340358112a Mon Sep 17 00:00:00 2001 From: "junghoon86.park" Date: Fri, 17 Oct 2025 15:10:37 +0900 Subject: [PATCH] =?UTF-8?q?[detail]=20=EB=A6=AC=EB=B7=B0=ED=8C=A8=EB=84=90?= =?UTF-8?q?=20=EB=8B=A4=ED=81=AC=EB=AA=A8=EB=93=9C=EC=A0=81=EC=9A=A9#end?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 스크롤바 부분 색상 디테일과 동일하도록 변경. - 필터 버튼 색상잘못된 부분 수정 --- .../UserReview/components/FilterItemButton.module.less | 2 +- .../UserReview/components/VirtualScrollBar.module.less | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/com.twin.app.shoptime/src/views/UserReview/components/FilterItemButton.module.less b/com.twin.app.shoptime/src/views/UserReview/components/FilterItemButton.module.less index 62126b8b..37d3b19f 100644 --- a/com.twin.app.shoptime/src/views/UserReview/components/FilterItemButton.module.less +++ b/com.twin.app.shoptime/src/views/UserReview/components/FilterItemButton.module.less @@ -53,7 +53,7 @@ &__text { text-align: center; - color: #fff; + color: #eaeaea; font-size: 24px; font-family: "LG Smart UI"; font-weight: 400; diff --git a/com.twin.app.shoptime/src/views/UserReview/components/VirtualScrollBar.module.less b/com.twin.app.shoptime/src/views/UserReview/components/VirtualScrollBar.module.less index 49aecd25..9d7964c1 100644 --- a/com.twin.app.shoptime/src/views/UserReview/components/VirtualScrollBar.module.less +++ b/com.twin.app.shoptime/src/views/UserReview/components/VirtualScrollBar.module.less @@ -16,11 +16,11 @@ outline: none; .track { - background-color: #d7d7d7; + background-color: #474747; } .thumb { - background-color: #6a707d; + background-color: #9c9c9c; } } } @@ -29,7 +29,7 @@ position: relative; width: 8px; height: 100%; - background-color: #d0d0d0; // 회색 배경 (잘 보이도록) + background-color: #474747; border-radius: 0; // DetailPanel과 동일 (각진 모서리) transition: background-color 0.2s ease; overflow: visible; @@ -39,7 +39,7 @@ position: absolute; left: 0; width: 100%; - background-color: #7a808d; // DetailPanel과 동일 + background-color: #9c9c9c; // DetailPanel과 동일 border-radius: 0; // DetailPanel과 동일 (각진 모서리) transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;