Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 에서만 스크롤바 숨김 */
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ListPage/ListPage.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
&__section {
display: flex;
flex-direction: column;
gap: 16px;
overflow: visible;
}

Expand All @@ -33,6 +32,7 @@
font-size: var(--font-size-24);
font-weight: var(--font-weight-bold);
color: #333;
padding: 8px; // 슬라이더 padding 추가 후 정렬 맞추기 위함
}

&__status {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ListPage/components/Slider.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
&__container {
width: 100%;
overflow: visible;

@media (max-width: 1199px) {
overflow-x: auto;
overflow-y: hidden;
Expand All @@ -45,6 +44,7 @@
&__track {
display: flex;
gap: 16px;
padding: 8px;
overflow: visible;
}
}
Loading