diff --git a/crates/storybook/src/workspace.rs b/crates/storybook/src/workspace.rs index b3eb5b31143543b6f5aa83fb7b0159e9e6d38806..17c0877339e2da53d3c0e4cbf4eecd093c7925de 100644 --- a/crates/storybook/src/workspace.rs +++ b/crates/storybook/src/workspace.rs @@ -416,9 +416,50 @@ impl WorkspaceElement { .items_start() .text_color(theme.lowest.base.default.foreground) .fill(theme.middle.warning.default.background) - .child(titlebar()) - .child(collab_panel()) - .child(statusbar()) + .child( + div() + .w_full() + .h_8() + .fill(theme.lowest.negative.default.background) + .child(titlebar()), + ) + .child( + div() + .flex_1() + .fill(theme.lowest.warning.default.background) + .child(collab_panel()), + ) + .child( + div() + .w_full() + .h_9() + .fill(theme.lowest.positive.default.background) + .child(statusbar()) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.negative.default.background), + ) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.positive.default.background), + ) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.accent.default.background), + ) + .child( + div() + .h_px() + .w_full() + .fill(theme.lowest.warning.default.background), + ), + ) } }