Add back negative margins, now that they're supported again

This commit is contained in:
Marshall Bowers 2023-10-09 12:33:30 -04:00
parent a7c4ae530d
commit 19434afe0a
3 changed files with 3 additions and 12 deletions

View file

@ -62,10 +62,7 @@ impl<S: 'static + Send + Sync> PlayerStack<S> {
})
.child(Avatar::new(player.avatar_src().to_string()))
.children(followers.map(|followers| {
div()
// TODO: Blocked on negative margins.
// .neg_ml_2()
.child(Facepile::new(followers.into_iter()))
div().neg_ml_2().child(Facepile::new(followers.into_iter()))
})),
)
}