mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
Aligned title bar items to the center and fixed left spacing on the sign in button
co-authored-by: max <max@zed.dev>
This commit is contained in:
parent
f9d3963dbb
commit
bb5c2833a3
@ -89,7 +89,7 @@ impl View for CollabTitlebarItem {
|
||||
let theme = cx.global::<Settings>().theme.clone();
|
||||
|
||||
let mut left_container = Flex::row();
|
||||
let mut right_container = Flex::row();
|
||||
let mut right_container = Flex::row().align_children_center();
|
||||
|
||||
left_container.add_child(
|
||||
Label::new(project_title, theme.workspace.titlebar.title.clone())
|
||||
@ -117,6 +117,7 @@ impl View for CollabTitlebarItem {
|
||||
|
||||
let status = workspace.read(cx).client().status();
|
||||
let status = &*status.borrow();
|
||||
|
||||
if matches!(status, client::Status::Connected { .. }) {
|
||||
right_container.add_child(self.render_toggle_contacts_button(&theme, cx));
|
||||
right_container.add_child(self.render_user_menu_button(&theme, cx));
|
||||
|
@ -174,6 +174,9 @@ export default function workspace(colorScheme: ColorScheme) {
|
||||
// Sign in buttom
|
||||
// FlatButton, Variant
|
||||
signInPrompt: {
|
||||
margin: {
|
||||
left: itemSpacing
|
||||
},
|
||||
...titlebarButton,
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user