diff --git a/desktop/app/src/App.tsx b/desktop/app/src/App.tsx index 1ef351a4d..b218561ae 100644 --- a/desktop/app/src/App.tsx +++ b/desktop/app/src/App.tsx @@ -68,6 +68,14 @@ type DispatchProps = { const MainContent = styled(FlexRow)({ height: 'calc(100vh - 38px)', }); + +const PluginContent = styled(FlexRow)({ + width: '100%', + height: '100%', + position: 'relative', +}); + +PluginContent.displayName = 'App:PluginContent'; MainContent.displayName = 'App:MainContent'; type Props = StateFromProps & OwnProps & DispatchProps; @@ -151,17 +159,26 @@ export class App extends React.Component { {this.getSheet} {this.props.leftSidebarVisible && } - {this.props.staticView != null ? ( - React.createElement(this.props.staticView, { - logger: this.props.logger, - }) - ) : ( - - )} -
+ + {this.props.staticView != null ? ( + React.createElement(this.props.staticView, { + logger: this.props.logger, + }) + ) : ( + + )} +
+