Skip to content

Commit

Permalink
chore: use specific app class instead of generic 'app' to prevent sid…
Browse files Browse the repository at this point in the history
…e effects (#248)

* use specific app class instead of generic 'app' to prevent side effects

* remove withStyles
  • Loading branch information
jenniferarnesen authored and janhenrikoverland committed Apr 10, 2019
1 parent 6cb27cb commit ac6dad7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/components/App.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* App */

.app {
.data-visualizer-app {
height: 100vh;
background-color: #f4f6f8;
overflow: hidden;
}
.app * {
.data-visualizer-app * {
outline: none;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class App extends Component {
return (
<FatalErrorBoundary>
<AxisSetup />
<div className="app flex-ct flex-dir-col">
<div className="data-visualizer-app flex-ct flex-dir-col">
<div className="section-headerbar">
<HeaderBar appName={i18n.t('Data Visualizer')} />
</div>
Expand Down

0 comments on commit ac6dad7

Please sign in to comment.