Revert "Bring navigation back to home page"

This reverts commit 23c23797ff.
This commit is contained in:
Wei Zhu 2018-01-08 10:18:13 +08:00
parent 783945cfba
commit 2d402050a2
2 changed files with 10 additions and 8 deletions

View File

@ -15,16 +15,22 @@ function getStyle() {
}
#header {
box-shadow: none;
max-width: 1200px;
width: 100%;
}
#header #search-box {
display: none;
margin: 20px auto 0;
padding: 0 24px;
}
#header,
#header .ant-select-selection,
#header .ant-menu {
background: transparent;
}
#header #logo {
padding: 0;
}
#header .ant-row > div:last-child, #header .nav-phone-icon{
display: none;
}
footer .footer-wrap{
width: 100%;
padding: 0;

View File

@ -210,11 +210,7 @@ export default class Header extends React.Component {
<Icon type="search" />
<Input ref={ref => this.searchInput = ref} placeholder={searchPlaceholder} />
</div>
{!isMobile && (
<div id="header-menu">
{menu}
</div>
)}
{!isMobile && menu}
</Col>
</Row>
</header>