Skip to content

Commit

Permalink
fix: body 스크롤 시 컨탠츠가 좁은 틈새로 보이는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hanyugeon committed Aug 15, 2024
1 parent a6d6bbb commit a4a97cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/book/search/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const BookSearchPage = () => {

/* 검색어가 입력되었을 때 각 컨테이너의 애니메이션 class */
const discoverPageAnimationClasses = `transition duration-500 ${
watchedKeyword ? '-translate-y-[6.15rem]' : 'translate-y-0'
watchedKeyword ? '-translate-y-[6.05rem]' : 'translate-y-0'
}`;
const headingOpacityClasses = `${
watchedKeyword ? 'opacity-0' : 'opacity-100'
Expand Down

0 comments on commit a4a97cb

Please sign in to comment.