Skip to content

Commit

Permalink
WIP: add wrapper to bootstrap css so it does not collide with assets
Browse files Browse the repository at this point in the history
  • Loading branch information
kgough committed Feb 21, 2018
1 parent 1a74f3a commit 17c5ce9
Show file tree
Hide file tree
Showing 3 changed files with 5,508 additions and 5,170 deletions.
18 changes: 10 additions & 8 deletions server/zanata-frontend/src/app/containers/App.js
Expand Up @@ -36,14 +36,16 @@ class App extends Component {
'/signup': configLinks.registerUrl
}
return (
<div className='view H(100vh)! Fld(c) Fld(r)--sm'>
<Icons />
<Helmet
title='Zanata'
titleTemplate='Zanata: %s'
/>
<Nav active={activePath} links={links} loading={loading} />
<div className='containerSidebar'>{children}</div>
<div className='bstrapReact'>
<div className='view H(100vh)! Fld(c) Fld(r)--sm'>

<Helmet
title='Zanata'
titleTemplate='Zanata: %s'
/>
<Nav active={activePath} links={links} loading={loading} />
<div className='containerSidebar'>{children}</div>
</div>
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion server/zanata-frontend/src/app/entrypoint/index.js
Expand Up @@ -62,6 +62,6 @@ const enhancedHistory = syncHistoryWithStore(history, store)

render(
// @ts-ignore store
<Root store={store} history={enhancedHistory} />,
<Root store={store} history={enhancedHistory} className='bstrapReact' />,
document.getElementById('root')
)

0 comments on commit 17c5ce9

Please sign in to comment.