Skip to content

Commit

Permalink
Minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joeblas committed Dec 1, 2017
1 parent 2e72b38 commit 779171f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
settings.json
settings-demo.json
settings-staging.json
settings-production.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { LinkContainer } from 'react-router-bootstrap';
import { Nav, NavItem, NavDropdown, MenuItem } from 'react-bootstrap';
import { Meteor } from 'meteor/meteor';

import '../Navigation/Navigation.scss';

const AuthenticatedNavigation = ({ name, history }) => (
<div>
<Nav>
Expand Down
3 changes: 2 additions & 1 deletion imports/ui/components/Navigation/Navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: white;
color: $dark-blue;
}

.navbar-default .navbar-nav > li > a:hover {
Expand All @@ -40,3 +40,4 @@
}



2 changes: 1 addition & 1 deletion imports/ui/pages/Logout/Logout.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Logout extends React.Component {
return (
<div className="Logout">

<h1>Stay safe out there.</h1>
<h1>You have successfully logged out.</h1>

</div>
);
Expand Down
4 changes: 2 additions & 2 deletions imports/ui/pages/Logout/Logout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

.Logout {
padding: 20px;
background: $cb-blue;
background: white;
text-align: center;
border-radius: 3px;
color: #fff;
color: $dark-blue;

img {
width: 100px;
Expand Down

0 comments on commit 779171f

Please sign in to comment.