Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"react": "^15.5.4",
"react-bootstrap": "^0.30.10",
"react-dom": "^15.5.4",
"react-favicon": "0.0.8",
"react-google-login": "^2.8.6",
"react-markdown": "^2.5.0",
"react-redux": "^5.0.4",
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">

<!--
Notice the use of %PUBLIC_URL% in the tag above.
It will be replaced with the URL of the `public` folder during the build.
Expand Down
4 changes: 3 additions & 1 deletion src/containers/NavContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ const NavContainer = props => (
Sign Out
</button>
:
<button className="btn btn-primary"><Link to="/login">Sign In</Link></button>
<form action="/login">
<button className="btn btn-primary">Sign In</button>
</form>
}
</li>
</ul>
Expand Down
1 change: 1 addition & 0 deletions src/css/components/_buttons.sass
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
&:hover, &:active
background-color: darken($teal, 40%)


.btn-secondary
background-color: rgba(0, 0, 0, 0)
border: 3px solid $pink
Expand Down