Add Align::Fill variant

This commit is contained in:
Cory Forsstrom 2021-09-14 09:10:37 -07:00 committed by Héctor Ramón Jiménez
parent 456a3f15e4
commit be51cac3d7
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
4 changed files with 59 additions and 13 deletions

View file

@ -201,6 +201,7 @@ pub fn align(align: Align) -> &'static str {
Align::Start => "flex-start",
Align::Center => "center",
Align::End => "flex-end",
Align::Fill => "stretch",
}
}