Skip to content

Commit

Permalink
deleted comment
Browse files Browse the repository at this point in the history
  • Loading branch information
patelsavan771 committed Jul 27, 2022
1 parent 4856bde commit c806597
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 32 deletions.
9 changes: 2 additions & 7 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
/* .carouselImg {
width: 100%;
} */
body{
background-color: #ededed !important;
}
Expand All @@ -11,13 +8,10 @@ body{

}



.card-container {
z-index: 1;
}


.row-container {
/* overflow-x: auto; */
background-color: white;
Expand All @@ -29,9 +23,10 @@ body{
/* margin: 20px;
padding: 10px; */
}

::-webkit-scrollbar {
width: 0; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
}


26 changes: 1 addition & 25 deletions src/components/RowContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,7 @@ export default function RowContainer(props) {
<h3 className='p-2'>{props.heading}</h3>

<div className='d-flex overflow-auto'>
{props.imgUrls.map((ele) =>
<RowImg src={ele} alt="" />)}
{/* <RowImg src={process.env.PUBLIC_URL + '/images/books/book1.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book3.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book4.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book5.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book6.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book7.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book8.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book9.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book10.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book1.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book3.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book4.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book5.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book6.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book7.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book8.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book9.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book10.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book2.jpg'} alt="" />
<RowImg src={process.env.PUBLIC_URL + '/images/books/book3.jpg'} alt="" /> */}
{props.imgUrls.map((ele) => <RowImg src={ele} alt="" />)}
</div>
</div>

Expand Down

0 comments on commit c806597

Please sign in to comment.