Skip to content

Commit

Permalink
style: BookShelf.Book 컴포넌트 패딩 1 -> 1.5rem으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gxxrxn committed May 21, 2024
1 parent 831b6ca commit 534785b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v1/bookShelf/BookShelf.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type BooksProps = Pick<APIBookshelf, 'books'>;

const Books = ({ books }: BooksProps) => {
return (
<ul className="grid grid-cols-4 px-[1rem]">
<ul className="grid grid-cols-4 px-[1.5rem]">
{books.map(book => (
<li key={book.bookId} className="flex justify-center">
<Book {...book} />
Expand Down

0 comments on commit 534785b

Please sign in to comment.