mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 18:41:10 +00:00
Merge pull request #2317 from zed-industries/fix-titlebar-right-spacing
Fix misaligned UI in the right titlebar
This commit is contained in:
commit
5cad3d3a67
2 changed files with 5 additions and 1 deletions
|
@ -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 a new issue