This commit is contained in:
Rick Reilly
2019-01-03 10:26:38 -05:00
parent c4a4967659
commit 7eedc58e86
2 changed files with 12 additions and 11 deletions

View File

@@ -19,6 +19,7 @@
color: #767676;
}
.justify-self-start {
justify-self: start !important;
.header-logo {
position: absolute;
left: calc(50% - 30px);
}

View File

@@ -22,23 +22,23 @@ export default class Header extends React.Component {
render() {
return (
<div className="mb-3">
<Media query="(max-width: 992px)">
<Media query="(max-width: 901px)">
{matches =>
(matches ? (
<header className="border-bottom-blue">
<div className="d-flex justify-content-center align-items-center p-3 border-bottom-blue">
<button className="border-0 mr-auto" onClick={() => this.setState({ mobileNavOpen: !this.state.mobileNavOpen })}>
<div className="p-3 border-bottom-blue">
<button className="border-0" onClick={() => this.setState({ mobileNavOpen: !this.state.mobileNavOpen })}>
<Icon className={classNames('fa', 'fa-2x', 'color-gray', { 'fa-bars': !this.state.mobileNavOpen }, { 'fa-times': this.state.mobileNavOpen })} />
</button>
<Hyperlink content={this.renderLogo()} destination="https://www.edx.org" />
<Hyperlink className="header-logo" content={this.renderLogo()} destination="https://www.edx.org" />
</div>
{this.state.mobileNavOpen &&
<div>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Rick</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Alex</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Zach</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Jansen</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Simon</a>
<a className="nav-link border-bottom-gray" href="https://support.edx.org">Help</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Dashboard</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Profile</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Account</a>
<a className="nav-link border-bottom-gray" href="https://www.google.com">Sign Out</a>
</div>}
</header>
) : (