fix: preserve 20 60 20 workspace proportions
CI / rust (push) Successful in 2m7s

This commit is contained in:
2026-08-31 17:21:57 -07:00
parent 1204689de0
commit 52b210df43
+4 -1
View File
@@ -1254,7 +1254,8 @@ impl Render for LumbridgeShell {
let workspace_stack = div() let workspace_stack = div()
.flex() .flex()
.flex_col() .flex_col()
.size_full() .flex_1()
.min_w_0()
.min_h_0() .min_h_0()
.overflow_hidden() .overflow_hidden()
.child( .child(
@@ -1412,6 +1413,8 @@ impl Render for LumbridgeShell {
.flex_col() .flex_col()
.flex_1() .flex_1()
.min_w_0() .min_w_0()
.min_h_0()
.overflow_hidden()
.child(tabs) .child(tabs)
.child(workspace_stack), .child(workspace_stack),
), ),