[ML] File data visualizer - fixing padding around whole page (#31246) (#31276)

This commit is contained in:
James Gowdy 2019-02-15 17:25:42 +00:00 committed by GitHub
parent d801015176
commit 988fc0ffa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -0,0 +1,3 @@
.file-datavisualizer__content {
padding: $euiSize;
}

View file

@ -1 +1,2 @@
@import 'file_datavisualizer';
@import 'components/index';

View file

@ -1,7 +1,3 @@
.file-datavisualizer-about-panel__content {
margin-top: $euiSize;
}
.file-datavisualizer-about-panel__icon {
width: $euiSizeXL * 3;
height: $euiSizeXL * 3;

View file

@ -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>
@ -339,7 +339,7 @@ export class FileDataVisualizerView extends Component {
<BottomPadding />
</React.Fragment>
}
</React.Fragment>
</div>
);
}
}