Skip to content

Commit

Permalink
feat(RmFooter): set logo and styles
Browse files Browse the repository at this point in the history
  • Loading branch information
aneurysmjs committed Jan 8, 2018
1 parent be9a395 commit e0767ca
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 4 deletions.
Binary file added src/assets/img/react-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 26 additions & 1 deletion src/components/RmFooter/RmFooter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,32 @@ export default class RmFooter extends React.Component {

render() {
return (
<footer className="text-center mt-2">Aneurysm</footer>
<footer className="footer sm-padding bg-dark">

<div className="container">

<div className="row">

<div className="col-md-12">

<div className="footer__logo">
<img
className="img-fluid"
src="../../assets/img/react-logo.png"
alt="react logo" />
</div>

<div className="footer__copyright">
<p>Copyright © 2018. All Rights Reserved</p>
</div>

</div>

</div>

</div>

</footer>
);
}

Expand Down
16 changes: 16 additions & 0 deletions src/components/RmFooter/RmFooter.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.footer {
background: #1C1D21;

.footer__logo {
height: 141px;
margin: 0 auto;
text-align: center;
width: 200px;
}

.footer__copyright {
color: #FFFFFF;
text-align: center;
}

}
6 changes: 3 additions & 3 deletions src/containers/RmLanding/RmLanding.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.RmLanding {
height: -webkit-calc(100vh - 32px);
height: -moz-calc(100vh - 32px);
height: calc(100vh - 32px);
height: -webkit-calc(100vh - 181px);
height: -moz-calc(100vh - 181px);
height: calc(100vh - 181px);
}

0 comments on commit e0767ca

Please sign in to comment.