-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: user mock profileImage 제거 * feat: 사용자 프로필 기본 이미지 추가 * feat: 피드 간격 수정 * feat: 모든 태그에 대해 스크롤 바 제거 적용 * feat: 피드 Carousel 구현 * feat: 유저 및 피드 mock 이미지 사이즈 조정 * feat: 피드 mock 이미지 리스트 수정 * chore: react-responsive-carousel 설치 * feat: 캐러셀 이미지 비율만 유지
- Loading branch information
Showing
16 changed files
with
270 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,6 @@ | |
z-index: 32; | ||
background-color: white; | ||
|
||
scrollbar-width: none; | ||
overflow-x: hidden; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,3 +142,7 @@ body { | |
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
* { | ||
scrollbar-width: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.carousel-container { | ||
overflow-x: unset; | ||
|
||
.carousel { | ||
overflow: unset; | ||
} | ||
} | ||
|
||
.carousel { | ||
.slider { | ||
display: flex; | ||
|
||
.slide { | ||
.carousel-item { | ||
width: inherit; | ||
height: inherit; | ||
} | ||
|
||
img { | ||
aspect-ratio: 4 / 5; | ||
} | ||
} | ||
} | ||
|
||
.control-dots { | ||
display: flex; | ||
justify-content: center; | ||
gap: 4px; | ||
|
||
margin: 0; | ||
bottom: -10px; | ||
|
||
.dot { | ||
width: 4px; | ||
height: 4px; | ||
|
||
margin: 0; | ||
|
||
background-color: $gray3; | ||
box-shadow: unset; | ||
|
||
opacity: 1; | ||
|
||
&.selected { | ||
background-color: $mint3; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.