Skip to content

Commit

Permalink
feat: 책장이 레이아웃에 잡혀진 패딩을 넘어서 렌더링 되도록 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
minjongbaek committed Dec 2, 2023
1 parent f4e6f32 commit 78a80c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v1/bookShelf/BookShelfRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import BookShelf from './BookShelf';
const BookShelfRow = ({ books }: Pick<APIBookshelf, 'books'>) => {
return (
<BookShelf>
<div className="relative pb-[2.5rem] pt-[2rem] shadow-[0px_28px_20px_-16px_#D1D1D1]">
<div className="relative left-[-2rem] w-[calc(100%+4rem)] px-[-2rem] pb-[2.5rem] pt-[2rem] shadow-[0px_28px_20px_-16px_#D1D1D1]">
<BookShelf.Background />
<BookShelf.Books books={books} />
</div>
Expand Down

0 comments on commit 78a80c6

Please sign in to comment.