feat(style): align mleader read-only field width with editable fields
This commit is contained in:
parent
d5b5f0781f
commit
8e6b60910c
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ fn input_row<'a>(
|
|||
fn readonly_row<'a>(label: Cow<'static, str>, value: Cow<'static, str>) -> Element<'a, Message> {
|
||||
row![
|
||||
text(label).size(11).style(muted_style).width(165),
|
||||
crate::ui::read_only::field(value.as_ref(), 11.0, Length::Fill),
|
||||
crate::ui::read_only::field(value.as_ref(), 11.0, Length::Fixed(190.0)),
|
||||
]
|
||||
.spacing(8)
|
||||
.align_y(iced::Center)
|
||||
|
|
|
|||
Loading…
Reference in a new issue