Move cooldown example instruction text according to example visual guidelines (#19381)

# Objective

Use the same text positioning as other examples that have instruction
text.

See
https://bevyengine.org/learn/contribute/helping-out/creating-examples/#visual-guidelines
This commit is contained in:
Rob Parrett 2025-05-26 15:01:08 -07:00 committed by GitHub
parent 523600133d
commit 2e37783242
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,8 +68,8 @@ fn setup(
Text::new("*Click some food to eat it*"), Text::new("*Click some food to eat it*"),
Node { Node {
position_type: PositionType::Absolute, position_type: PositionType::Absolute,
top: Val::Px(5.0), top: Val::Px(12.0),
left: Val::Px(15.0), left: Val::Px(12.0),
..default() ..default()
}, },
)); ));