mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
This commit is contained in:
parent
a167d081f5
commit
bf19b19506
2 changed files with 8 additions and 11 deletions
|
@ -52,18 +52,18 @@ const DirectoryNodes = (props: DirectoryNodesProps) => {
|
|||
</EuiFlexItem>
|
||||
));
|
||||
return (
|
||||
<EuiFlexItem className="codeContainer__directoryList">
|
||||
<EuiFlexGroup direction="column" gutterSize="none">
|
||||
<EuiFlexItem>
|
||||
<div className="codeContainer__directoryList">
|
||||
<div>
|
||||
<div>
|
||||
<EuiTitle size="s">
|
||||
<h3>{props.title}</h3>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
</div>
|
||||
<EuiFlexGroup wrap direction="row" gutterSize="none" justifyContent="flexStart">
|
||||
{nodes}
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
@ -120,9 +120,5 @@ export const Directory = withRouter((props: Props) => {
|
|||
{folders.length > 0 && folderList}
|
||||
</React.Fragment>
|
||||
);
|
||||
return (
|
||||
<EuiFlexGroup direction="column" gutterSize="none">
|
||||
{children}
|
||||
</EuiFlexGroup>
|
||||
);
|
||||
return <div>{children}</div>;
|
||||
});
|
||||
|
|
|
@ -185,6 +185,7 @@
|
|||
}
|
||||
&:not(:first-child) {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue