Skip to content

Commit

Permalink
Merge branch 'master' into JoeFrontPage
Browse files Browse the repository at this point in the history
  • Loading branch information
joeblas authored Nov 22, 2017
2 parents 79d3a4c + 6e1c9fb commit 2e3d9bd
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 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
3 changes: 3 additions & 0 deletions imports/ui/pages/Index/Index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ bootstrapUtils.addStyle(Jumbotron, 'custom');

const Index = () => (
<div>

<style type="text/css">{`
.jumbotron-custom {
background-color: white;
Expand All @@ -34,6 +35,8 @@ const Index = () => (
</Row>
<div className="Index">
</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 2e3d9bd

Please sign in to comment.