Update pickers to have a consistently larger size

This commit is contained in:
Nate Butler 2023-12-06 23:38:47 -05:00
parent 9e6103f863
commit fffe4f51fb
7 changed files with 10 additions and 10 deletions

View file

@ -84,7 +84,7 @@ impl Render for CommandPalette {
type Element = Div;
fn render(&mut self, _cx: &mut ViewContext<Self>) -> Self::Element {
v_stack().min_w_96().child(self.picker.clone())
v_stack().w(rems(34.)).child(self.picker.clone())
}
}