Skip to content

Commit

Permalink
Nav-styles#71; 209
Browse files Browse the repository at this point in the history
  • Loading branch information
nickllerandi committed Apr 24, 2019
1 parent b507d9c commit 62199e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/Global.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {createGlobalStyle} from 'styled-components'
const GlobalStyle = createGlobalStyle`
body {
margin: 0;
padding: 0;
padding: 90px 0 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
Expand Down
6 changes: 3 additions & 3 deletions client/src/components/layout/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Navbar extends Component {


return (
<HeaderNav>
<StyledNavbar>
<div className="container">
<div className="main">
<Link to="/" className="logo">
Expand All @@ -61,12 +61,12 @@ class Navbar extends Component {
</div>
{isAuthenticated ? inState : outState}
</div>
</HeaderNav>
</StyledNavbar>
)
}
}

const HeaderNav = styled.header`
const StyledNavbar = styled.header`
min-width: auto;
${elevation[1]};
width: 100%;
Expand Down

0 comments on commit 62199e7

Please sign in to comment.