Skip to content

Commit

Permalink
Fix responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
NishantCoder108 committed Mar 3, 2024
1 parent 6ba17c4 commit 08921d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BooksLibrary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const BooksLibrary = ({ query }: IQuery) => {
);
return (
<>
<div className="flex px-6 gap-4 mt-12 items-center justify-between flex-wrap">
<div className="flex px-6 gap-4 mt-12 items-center sm:justify-between flex-wrap justify-center ">
{books
? books.map((item) => <BooksCard key={item.id} {...item} />)
: "Not found"}
Expand Down

0 comments on commit 08921d3

Please sign in to comment.