mirror of https://github.com/embarklabs/embark.git
Merge pull request #163 from status-im/feature/remove-footer
Remove footer
This commit is contained in:
commit
8591923e53
|
@ -10,7 +10,6 @@ import FontAwesome from 'react-fontawesome';
|
||||||
import "./Layout.css";
|
import "./Layout.css";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AppFooter,
|
|
||||||
AppHeader,
|
AppHeader,
|
||||||
AppSidebar,
|
AppSidebar,
|
||||||
AppSidebarFooter,
|
AppSidebarFooter,
|
||||||
|
@ -150,6 +149,7 @@ class Layout extends React.Component {
|
||||||
<NavItem>
|
<NavItem>
|
||||||
<SearchBar loading={this.state.searchLoading} searchSubmit={searchValue => this.searchTheExplorer(searchValue)}/>
|
<SearchBar loading={this.state.searchLoading} searchSubmit={searchValue => this.searchTheExplorer(searchValue)}/>
|
||||||
</NavItem>
|
</NavItem>
|
||||||
|
{this.renderTool()}
|
||||||
{this.renderSettings()}
|
{this.renderSettings()}
|
||||||
</Nav>
|
</Nav>
|
||||||
);
|
);
|
||||||
|
@ -174,16 +174,21 @@ class Layout extends React.Component {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
renderFooter() {
|
renderTool() {
|
||||||
return (
|
return (
|
||||||
<AppFooter>
|
<React.Fragment>
|
||||||
<span className="ml-auto">
|
<NavItem>
|
||||||
Embark
|
<NavLink href="https://embark.status.im" title="Documentation" rel="noopener noreferrer" target="_blank">
|
||||||
<a href="https://embark.status.im" title="Documentation" rel="noopener noreferrer" target="_blank">Documentation</a>
|
<FontAwesome name="book" />
|
||||||
|
|
</NavLink>
|
||||||
<a href="https://github.com/embark-framework" title="Github" rel="noopener noreferrer" target="_blank">Github</a>
|
</NavItem>
|
||||||
</span>
|
<NavItem>
|
||||||
</AppFooter>
|
<NavLink href="https://github.com/embark-framework" title="Github" rel="noopener noreferrer" target="_blank">
|
||||||
|
<FontAwesome name="github" />
|
||||||
|
</NavLink>
|
||||||
|
</NavItem>
|
||||||
|
</React.Fragment>
|
||||||
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -194,13 +199,13 @@ class Layout extends React.Component {
|
||||||
removeCssClasses();
|
removeCssClasses();
|
||||||
}
|
}
|
||||||
|
|
||||||
return (<div className="app animated fadeIn">
|
return (
|
||||||
|
<div className="app animated fadeIn">
|
||||||
<AppHeader fixed>
|
<AppHeader fixed>
|
||||||
<AppNavbarBrand full={{src: logo, width: 50, height: 50, alt: 'Embark Logo'}}
|
<AppNavbarBrand full={{src: logo, width: 50, height: 50, alt: 'Embark Logo'}}
|
||||||
minimized={{src: logo, width: 50, height: 50, alt: 'Embark Logo'}}
|
minimized={{src: logo, width: 50, height: 50, alt: 'Embark Logo'}}
|
||||||
/>
|
/>
|
||||||
{this.renderNav()}
|
{this.renderNav()}
|
||||||
|
|
||||||
{this.renderRightNav()}
|
{this.renderRightNav()}
|
||||||
</AppHeader>
|
</AppHeader>
|
||||||
|
|
||||||
|
@ -225,9 +230,8 @@ class Layout extends React.Component {
|
||||||
</Container>
|
</Container>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
{this.renderFooter()}
|
);
|
||||||
</div>);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue