fixed resizer for both left and right pane

This commit is contained in:
zadam
2021-06-05 14:01:21 +02:00
parent a1d7737551
commit 4bf1c25721
6 changed files with 75 additions and 40 deletions

View File

@@ -82,6 +82,7 @@ export default class DesktopLayout {
.child(...this.customWidgets.get('left-pane'))
)
.child(new FlexContainer('column')
.id('rest-pane')
.css("flex-grow", "1")
.child(new FlexContainer('row').overflowing()
.child(new TabRowWidget())
@@ -143,7 +144,6 @@ export default class DesktopLayout {
)
.child(new RightPaneContainer()
.hideInZenMode()
.css("width", "300px")
.child(...this.customWidgets.get('right-pane'))
)
)