Skip to content

Commit

Permalink
Merge pull request #669 from snack-attack/feat/improve-footer
Browse files Browse the repository at this point in the history
made footer layout mobile responsive
  • Loading branch information
ivan-aksamentov authored May 11, 2020
2 parents 484fc2c + 4a5579b commit 1799c24
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/Layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ import './Footer.scss'

export default function Footer() {
return (
<Container fluid>
<Container fluid className="py-3">
<Row noGutters>
<Col md={6}>{'COVID-19 Scenarios (c) 2020 neherlab'}</Col>
<Col md={6} className="d-flex">
<small className="ml-auto text-gray-light">{getVersionString()}</small>
<Col xs={12} md={6} className="text-center text-md-left mb-2 mb-md-0">
{'COVID-19 Scenarios (c) 2020 neherlab'}
</Col>
<Col xs={12} md={6} className="d-flex justify-content-center justify-content-md-end align-items-center">
<small className="text-gray-light">{getVersionString()}</small>
</Col>
</Row>
</Container>
Expand Down

1 comment on commit 1799c24

@vercel
Copy link

@vercel vercel bot commented on 1799c24 May 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.