Hide toolbar on narrative mode

This commit is contained in:
Franc Camps-Febrer
2018-12-13 11:07:24 +01:00
committed by Lachlan Kermode
parent 17a81a7643
commit 58aaadc5d4
11 changed files with 71 additions and 160 deletions

View File

@@ -175,7 +175,7 @@ class Toolbar extends React.Component {
render() {
return (
<div id="toolbar-wrapper" className="toolbar-wrapper">
<div id="toolbar-wrapper" className={`toolbar-wrapper ${this.props.narrative ? 'narrative-mode' : ''}`}>
{this.renderToolbarTabs()}
{this.renderToolbarPanels()}
</div>
@@ -193,6 +193,7 @@ function mapStateToProps(state) {
categoryFilter: state.app.filters.categories,
viewFilters: state.app.filters.views,
features: state.app.features,
narrative: state.app.narrative,
}
}