fix(grid): layout swapped row and column spacing

This commit is contained in:
Jeremy Soller 2024-02-29 09:13:10 -07:00
parent cd9778a704
commit e12d625338
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -95,8 +95,8 @@ pub fn resolve<Message>(
display: Display::Grid,
gap: taffy::geometry::Size {
width: length(row_spacing),
height: length(column_spacing),
width: length(column_spacing),
height: length(row_spacing),
},
justify_items: Some(match height {