Skip to content

Commit

Permalink
Merge pull request #41 from Bamdoliro/feat/#39
Browse files Browse the repository at this point in the history
해쉬 추가
  • Loading branch information
seonghoon07 authored Feb 12, 2024
2 parents 9d9a97a + f4a1798 commit 03562f4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
width: 100%;
height: 100vh;
}

.swiper {
margin: 0;
}
.swiper-slide:last-child {
height: 360px;
}
2 changes: 1 addition & 1 deletion src/pages/Layouts/Culture/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Culture = ({ textNumber, setTextNumber }) => {
isScrollDown.current = true;
setTimeout(() => {
isScrollDown.current = false;
}, 1500);
}, 1000);
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Layouts/Introduce/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const Introduce = ({ textNumber, setTextNumber }) => {
isScrollDown.current = true;
setTimeout(() => {
isScrollDown.current = false;
}, 1500);
}, 1000);
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const Home = () => {
modules={[Mousewheel, HashNavigation, Navigation]}
speed={1000}
slidesPerView={1}
autoHeight={true}
>
<SwiperSlide data-hash="main">
<Main />
Expand Down

0 comments on commit 03562f4

Please sign in to comment.