mirror of
https://github.com/grafana/grafana.git
synced 2024-12-27 09:21:35 -06:00
hide overflow content for single left pane (#54882)
This commit is contained in:
parent
22c937340e
commit
d5e28426ee
@ -94,7 +94,7 @@ export class SplitPaneWrapper extends PureComponent<Props> {
|
||||
);
|
||||
}
|
||||
|
||||
return leftPaneComponents;
|
||||
return <div className={styles.singleLeftPane}>{leftPaneComponents}</div>;
|
||||
}
|
||||
|
||||
render() {
|
||||
@ -163,6 +163,12 @@ const getStyles = stylesFactory((theme: GrafanaTheme) => {
|
||||
`;
|
||||
|
||||
return {
|
||||
singleLeftPane: css`
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
`,
|
||||
resizerV: cx(
|
||||
resizer,
|
||||
css`
|
||||
|
Loading…
Reference in New Issue
Block a user