Change summary
crates/storybook/src/collab_panel.rs | 2 +-
crates/storybook/src/workspace.rs | 6 ++++--
2 files changed, 5 insertions(+), 3 deletions(-)
Detailed changes
@@ -23,7 +23,7 @@ impl<V: 'static> CollabPanelElement<V> {
// Panel
div()
- .w_96()
+ .w_64()
.flex()
.flex_col()
.font("Zed Sans Extended")
@@ -425,9 +425,11 @@ impl WorkspaceElement {
)
.child(
div()
+ .flex()
.flex_1()
- .fill(theme.lowest.warning.default.background)
- .child(collab_panel()),
+ .child(collab_panel())
+ .child(div().flex_1().fill(theme.lowest.accent.default.background))
+ .child(div().w_64().fill(theme.lowest.positive.default.background)),
)
.child(
div()