From 17c5bbfd96d9ab7de8cfae4869f797c2cc1517bc Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Thu, 7 Sep 2023 12:58:42 -0400 Subject: [PATCH] Update titlebar style --- crates/storybook/src/workspace.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/crates/storybook/src/workspace.rs b/crates/storybook/src/workspace.rs index 6f7a9b712c..869b3b395d 100644 --- a/crates/storybook/src/workspace.rs +++ b/crates/storybook/src/workspace.rs @@ -1,7 +1,6 @@ use crate::{collab_panel::collab_panel, theme::theme}; use gpui2::{ elements::{div, svg}, - geometry::pixels, style::{StyleHelpers, Styleable}, Element, IntoElement, ParentElement, ViewContext, }; @@ -45,21 +44,21 @@ impl TitleBar { div() .w_3() .h_3() - // .rounded_full() + .rounded_full() .fill(theme.lowest.positive.default.foreground), ) .child( div() .w_3() .h_3() - // .rounded_full() + .rounded_full() .fill(theme.lowest.warning.default.foreground), ) .child( div() .w_3() .h_3() - // .rounded_full() + .rounded_full() .fill(theme.lowest.negative.default.foreground), ), )