Skip to content

Commit

Permalink
[Fix] 디테일 수정 (#155)
Browse files Browse the repository at this point in the history
* Feat/#144: skeleton, 북마크 수정

* Fix/#144: 북마크 오류 수정

* Fix/#144: 스크롤 위치 조정
  • Loading branch information
Minn-Choi authored Jan 24, 2025
1 parent ccefded commit 2b799db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/toolList/ToolList.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ToolListWrapper = styled.div`

export const ToolCardWrapper = styled.div`
width: 104.6rem;
margin-bottom: 15rem;
margin-bottom: 30rem;
background: ${({ theme }) => theme.colors.white1};
border-radius: 1.6rem;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/toolList/ToolList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ToolList = () => {
const handleScroll = () => {
if (!ticking) {
window.requestAnimationFrame(() => {
setIsSticky(window.scrollY > 304);
setIsSticky(window.scrollY > 270);
ticking = false;
});
ticking = true;
Expand Down

0 comments on commit 2b799db

Please sign in to comment.