Navigation Menu

Skip to content

Commit

Permalink
restore the logo
Browse files Browse the repository at this point in the history
  • Loading branch information
elfakamal committed Mar 8, 2018
1 parent 417cc4e commit 9c796b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/assets/scss/includes/_header.scss
Expand Up @@ -29,6 +29,7 @@
margin-bottom: em(5px);
height: em(40px);
width: em(120px);

@media (min-width: em(768px)) {
margin: 0 em(30px) 0 0;
height: em(60px);
Expand All @@ -48,6 +49,8 @@
margin: 0 auto;
height: em(40px);
width: em(120px);
max-width: 100%;

@media (min-width: em(768px)) {
margin: 0;
height: em(60px);
Expand Down
5 changes: 4 additions & 1 deletion src/containers/Header.jsx
Expand Up @@ -5,6 +5,7 @@ import cx from 'classnames';

import clock from '../assets/images/icons/icon_clock.svg';
import rocket from '../assets/images/icons/icon_rocket.svg';
import logo from '../assets/images/logo_eleven_codelabs.png';

const mapStateToProps = ({
currentCourse,
Expand Down Expand Up @@ -34,7 +35,9 @@ export class Header extends React.Component {
<header className={headerClasses}>
<div className="container site-header__content">
<div className="branding">
<a href="/" className="branding__content" />
<a href="/" className="branding__content">
<img className="branding__image" alt="Eleven Codelabs" src={logo} />
</a>
</div>

<div className="course-header">
Expand Down

0 comments on commit 9c796b9

Please sign in to comment.