Skip to content

Commit

Permalink
Add files
Browse files Browse the repository at this point in the history
  • Loading branch information
avvazana committed Nov 16, 2018
1 parent 239f181 commit 0d23df2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@
opacity: .95;
}

.main-container .logo {
display: flex;
justify-content: left;
font-weight: 545;
font-size: 24px;
color: white;
}



// body {
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Route, Switch } from 'react-router-dom';
import LoginFormContainer from './session/login_form_container';
import SignupFormContainer from './session/signup_form_container';
import SplashContainer from './splash/splash_container';
import BrowseContainer from './browse/browse_container';
import BrowseContainer from './main/browse_container';

const App = () => {
return (
Expand Down
4 changes: 4 additions & 0 deletions frontend/components/main/main_content.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ class MainContent extends React.Component {
return (
<div className="main-container">
<nav className="nav-bar">
<div className="logo">
<img src={window.whiteLogoURL}></img>
<h1>Spoofify</h1>
</div>
<button onClick={()=>this.props.logout()}>Logout</button>
</nav>
</div>
Expand Down

0 comments on commit 0d23df2

Please sign in to comment.