changes to the sidebar, cards and footer (#237)

* added responsiveness to sidebar and sticky footer

* remobed unused vars

* added functionality to read more button

* a minor logical error fixed

* removed footer
This commit is contained in:
palak
2020-10-17 01:14:03 +05:30
committed by GitHub
parent 18cc21b60d
commit e9e9b6755c
5 changed files with 35 additions and 12 deletions

View File

@@ -37,6 +37,16 @@ export default ({ data }) => {
<BookFeed data={data} limit={maximumBooksToShow} />
</Col>
</Row>
<Row>
{/* <footer style={{marginLeft: 150,
width: `100%`,
position: `fixed`,
bottom: 0}}>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>
</footer> */}
</Row>
</Container>
</Layout>
)