Adjust style of completions again

This commit is contained in:
Jeremy Soller 2025-02-07 11:01:20 -07:00
parent bc4f267c60
commit 440308fdea
No known key found for this signature in database
GPG key ID: 670FDFB5428E05CA

View file

@ -3591,7 +3591,7 @@ impl Tab {
.class(if selected {
theme::Button::Standard
} else {
theme::Button::ListItem
theme::Button::HeaderBar
})
.on_press(Message::EditLocationComplete(i))
.padding(space_xxs)
@ -3602,7 +3602,7 @@ impl Tab {
widget::container(column)
.class(theme::Container::Dropdown)
//TODO: This is a hack to get the popover to be the right width
.max_width(size.width - 124.0),
.max_width(size.width - 140.0),
);
}
}