Fix padding for notes label (#7280)
Fixes the padding of the "notes" button in collab-ui. I'm not sure why the previous code used `div().h_7().w_full()`. Am I missing something here? ### Before  ### After  Release Notes: - Fixed padding of the "notes" button in the collaboration panel. Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
This commit is contained in:
parent
bacb2a266a
commit
cf4f3ed79a
1 changed files with 1 additions and 1 deletions
|
@ -957,7 +957,7 @@ impl CollabPanel {
|
|||
.child(render_tree_branch(false, true, cx))
|
||||
.child(IconButton::new(0, IconName::File)),
|
||||
)
|
||||
.child(div().h_7().w_full().child(Label::new("notes")))
|
||||
.child(Label::new("notes"))
|
||||
.tooltip(move |cx| Tooltip::text("Open Channel Notes", cx))
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue