From 0d861c538b9c87819a959e160156741866ab2163 Mon Sep 17 00:00:00 2001 From: summerdev96 Date: Tue, 10 Jun 2025 15:16:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EB=A1=A4=EB=A7=81=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=ED=8D=BC=20=EB=A6=AC=EC=8A=A4=ED=8A=B8=20=EC=8A=A4=ED=81=AC?= =?UTF-8?q?=EB=A1=A4=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95=20=EB=B0=8F?= =?UTF-8?q?=20=EC=B9=B4=EB=93=9C=20=ED=98=B8=EB=B2=84=20=EC=8B=9C=20?= =?UTF-8?q?=EC=9E=98=EB=A6=AC=EB=8A=94=20=ED=98=84=EC=83=81=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 --- .../HorizontalScrollContainer.module.scss | 4 ++-- src/pages/ListPage/ListPage.module.scss | 2 +- src/pages/ListPage/components/Slider.module.scss | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/HorizontalScrollContainer/HorizontalScrollContainer.module.scss b/src/components/HorizontalScrollContainer/HorizontalScrollContainer.module.scss index 4b106f4..6618596 100644 --- a/src/components/HorizontalScrollContainer/HorizontalScrollContainer.module.scss +++ b/src/components/HorizontalScrollContainer/HorizontalScrollContainer.module.scss @@ -5,11 +5,11 @@ /* 각 아이템(열)의 너비는 내용 크기에 맞추기 */ grid-auto-columns: max-content; align-items: center; - overflow-x: auto; - overflow-y: hidden; } .horizontal-scroll--hide-scrollbar { + overflow-x: auto; + overflow-y: hidden; /* Firefox 스크롤바 숨김 */ @supports (scrollbar-width: none) { scrollbar-width: none; /* Firefox 에서만 스크롤바 숨김 */ diff --git a/src/pages/ListPage/ListPage.module.scss b/src/pages/ListPage/ListPage.module.scss index 9dcd731..b6fc92e 100644 --- a/src/pages/ListPage/ListPage.module.scss +++ b/src/pages/ListPage/ListPage.module.scss @@ -24,7 +24,6 @@ &__section { display: flex; flex-direction: column; - gap: 16px; overflow: visible; } @@ -33,6 +32,7 @@ font-size: var(--font-size-24); font-weight: var(--font-weight-bold); color: #333; + padding: 8px; } &__status { diff --git a/src/pages/ListPage/components/Slider.module.scss b/src/pages/ListPage/components/Slider.module.scss index 03c914e..aa3ed2d 100644 --- a/src/pages/ListPage/components/Slider.module.scss +++ b/src/pages/ListPage/components/Slider.module.scss @@ -34,7 +34,6 @@ &__container { width: 100%; overflow: visible; - @media (max-width: 1199px) { overflow-x: auto; overflow-y: hidden; @@ -45,6 +44,7 @@ &__track { display: flex; gap: 16px; + padding: 8px; overflow: visible; } } From 8d6dc82c418fff8f3915a6de725f8cca7eff2949 Mon Sep 17 00:00:00 2001 From: summerdev96 Date: Tue, 10 Jun 2025 15:21:18 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20=EC=A3=BC=EC=84=9D=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ListPage/ListPage.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ListPage/ListPage.module.scss b/src/pages/ListPage/ListPage.module.scss index b6fc92e..9006eb3 100644 --- a/src/pages/ListPage/ListPage.module.scss +++ b/src/pages/ListPage/ListPage.module.scss @@ -32,7 +32,7 @@ font-size: var(--font-size-24); font-weight: var(--font-weight-bold); color: #333; - padding: 8px; + padding: 8px; // 슬라이더 padding 추가 후 정렬 맞추기 위함 } &__status {