diff --git a/desktop/app/src/App.tsx b/desktop/app/src/App.tsx index b218561ae..dbcfcc71d 100644 --- a/desktop/app/src/App.tsx +++ b/desktop/app/src/App.tsx @@ -65,7 +65,7 @@ type DispatchProps = { setActiveSheet: typeof setActiveSheet; }; -const MainContent = styled(FlexRow)({ +const MainContent = styled(FlexColumn)({ height: 'calc(100vh - 38px)', }); @@ -154,31 +154,33 @@ export class App extends React.Component { return ( - - {this.getSheet} - {this.props.leftSidebarVisible && } - - {this.props.staticView != null ? ( - React.createElement(this.props.staticView, { - logger: this.props.logger, - }) - ) : ( - - )} -
- + + + + {this.props.leftSidebarVisible && } + + {this.props.staticView != null ? ( + React.createElement(this.props.staticView, { + logger: this.props.logger, + }) + ) : ( + + )} +
+ +