Revert "Store a z-index id per-layer (#4128)"

This reverts commit 28a2337218, reversing
changes made to e992f84735.
This commit is contained in:
Conrad Irwin 2024-01-18 13:28:23 -07:00
parent 81baefb460
commit 6c2da0d25b
7 changed files with 45 additions and 46 deletions

View file

@ -13,7 +13,7 @@ impl RenderOnce for FacePile {
let isnt_last = ix < player_count - 1;
div()
.z_index((player_count - ix) as u16)
.z_index((player_count - ix) as u8)
.when(isnt_last, |div| div.neg_mr_1())
.child(player)
});