Skip to content

Commit

Permalink
Merge pull request #20 from joeblas/footer-links
Browse files Browse the repository at this point in the history
footer links
  • Loading branch information
ethanzander authored Nov 22, 2017
2 parents 65542ca + d8632c1 commit 6e1c9fb
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
7 changes: 7 additions & 0 deletions imports/ui/components/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ const Footer = () => (
<div className="Footer">
<Grid>
<p className="pull-left">&copy; {copyrightYear()} CloudControl, LLC</p>
<div className="pull-right">
<a href="https://github.com/hads17">Bradley S. | </a>
<a href="https://github.com/bahrtender3">Dustin Bahr | </a>
<a href="https://github.com/ethanzander">Ethan Zander | </a>
<a href="https://github.com/joeblas">Joe Blas | </a>
<a href="https://github.com/tylern88">Tyler Negro</a>
</div>
</Grid>
</div>
);
Expand Down
7 changes: 4 additions & 3 deletions imports/ui/components/Footer/Footer.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
@import '../../stylesheets/mixins';
@import '../../stylesheets/colors';



html {
position: relative;
min-height: 100%;
Expand Down Expand Up @@ -36,14 +38,13 @@ body {
}

a {
color: $gray-light;
color: white;
}

a:hover,
a:active,
a:focus {
text-decoration: none;
color: $gray;
color: white;
}
}
}
Expand Down
7 changes: 5 additions & 2 deletions imports/ui/pages/Index/Index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ import { Button, Image } from 'react-bootstrap';
import './Index.scss';

const Index = () => (
<div className="Index">
<Image responsive="true" className="col-md-offset-3" src="https://i.imgur.com/hcyPRbP.jpg"/>
<div>
<div className="Index">
<Image responsive="true" className="col-md-offset-3" src="https://i.imgur.com/hcyPRbP.jpg" />
</div>

</div>
);

Expand Down
4 changes: 4 additions & 0 deletions imports/ui/stylesheets/bootstrap-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@
margin-top: 20px;
}
}

a {
color: white;
}

0 comments on commit 6e1c9fb

Please sign in to comment.