Skip to content

Commit

Permalink
Fix: 탐색 페이지 ui 수정 (#62)
Browse files Browse the repository at this point in the history
* Fix: 탐색 타이틀 띄어쓰기 수정

* Feat: 플로팅 버튼 z인덱스 수정
  • Loading branch information
Nahyun-Kang authored Feb 23, 2024
1 parent 8121488 commit 406700b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/exploreComponents/ListsRecommendation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function ListRecommendation() {

return (
<section className={styles.wrapperOuter}>
<div className={styles.sectionTitle}>NEW </div>
<div className={styles.sectionTitle}>NEW✨</div>
<ul>
{recommendLists?.length !== 0 ? (
recommendLists?.map((item: ListRecommendationType, index) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/exploreComponents/TrendingLists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function TrendingList() {

return (
<div className={styles.wrapper}>
<h2 className={styles.sectionTitle}>TRENDING ️🌊 </h2>
<h2 className={styles.sectionTitle}>TRENDING🌊</h2>
<div className={styles.listWrapper} ref={ref}>
<ul className={styles.slide}>
{addedList?.map((item: TrendingListType, index) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/exploreComponents/UsersRecommendation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function UsersRecommendation() {
<section>
{myId && (
<div className={styles.wrapper}>
<h2 className={styles.sectionTitle}>HI, LISTER 👋</h2>
<h2 className={styles.sectionTitle}>HI, LISTER👋</h2>
{usersList?.length !== 0 && (
<ul className={styles.recommendUsersListWrapper} ref={wrapperRef}>
{usersList?.map((item: UserProfileType) => {
Expand Down
1 change: 1 addition & 0 deletions src/components/floatingButton/FloatingContainer.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const wrapper = style({

position: 'fixed',
bottom: '96px',
zIndex: 3,
});

export const container = style({
Expand Down

0 comments on commit 406700b

Please sign in to comment.