Improving the UI of book cards

This commit is contained in:
Liel Fridman
2019-10-19 00:37:07 +03:00
committed by Vishnu Ks
parent edd2eef7f4
commit f50bdf9006
2 changed files with 8 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ export default ({data}) => {
return (
<Layout>
<SEO title="Home" />
<div className="flex flex-wrap">
<div className="flex flex-row flex-wrap">
{data.allBooksJson.edges.map(function(x) {
return (
<BookCard book={x.node} key={x.node.id} />