For some reason these work:
style.position.left.try_add_assign(Val::Px(250.0)).ok();
style.position.top.try_add_assign(Val::Px(250.0)).ok();
But these don't do anything no matter what I set the value to:
style.position.right.try_add_assign(Val::Px(250.0)).ok();
style.position.bottom.try_add_assign(Val::Px(250.0)).ok();
I tried 25, 250, -250, nothing works. And I'm not getting any errors, the position of the text just doesn't change