diff options
author | 2020-02-05 01:04:46 +0100 | |
---|---|---|
committer | 2020-02-05 01:04:46 +0100 | |
commit | 28fd9feb40a024ea29f73fa91c21fc3f2cf01d58 (patch) | |
tree | e1df3d67f8e293b15940c447acb37a3ed0155b36 /web/src/widget/row.rs | |
parent | 0030bcbd33f5c4db60aac826552042e46b51c691 (diff) | |
download | iced-28fd9feb40a024ea29f73fa91c21fc3f2cf01d58.tar.gz iced-28fd9feb40a024ea29f73fa91c21fc3f2cf01d58.tar.bz2 iced-28fd9feb40a024ea29f73fa91c21fc3f2cf01d58.zip |
Support styling for `Button` in `iced_web`
Diffstat (limited to 'web/src/widget/row.rs')
-rw-r--r-- | web/src/widget/row.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/widget/row.rs b/web/src/widget/row.rs index 6e184cab..b360bc45 100644 --- a/web/src/widget/row.rs +++ b/web/src/widget/row.rs @@ -28,7 +28,7 @@ impl<'a, Message> Row<'a, Message> { Row { spacing: 0, padding: 0, - width: Length::Shrink, + width: Length::Fill, height: Length::Shrink, max_width: u32::MAX, max_height: u32::MAX, |