Skip to content

Commit

Permalink
[ML] File data visualizer - fixing padding around whole page (elastic…
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic authored Feb 15, 2019
1 parent d801015 commit 988fc0f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.file-datavisualizer__content {
padding: $euiSize;
}
1 change: 1 addition & 0 deletions x-pack/plugins/ml/public/file_datavisualizer/_index.scss
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
@import 'file_datavisualizer';
@import 'components/index';
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
.file-datavisualizer-about-panel__content {
margin-top: $euiSize;
}

.file-datavisualizer-about-panel__icon {
width: $euiSizeXL * 3;
height: $euiSizeXL * 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export class FileDataVisualizerView extends Component {
const fields = (results !== undefined && results.field_stats !== undefined) ? Object.keys(results.field_stats) : [];

return (
<React.Fragment>
<div className="file-datavisualizer__content">
{(mode === MODE.READ) &&
<React.Fragment>

Expand Down Expand Up @@ -339,7 +339,7 @@ export class FileDataVisualizerView extends Component {
<BottomPadding />
</React.Fragment>
}
</React.Fragment>
</div>
);
}
}
Expand Down

0 comments on commit 988fc0f

Please sign in to comment.