diff --git a/src/features/hud/mod.rs b/src/features/hud/mod.rs index 27ec5b1..6091430 100644 --- a/src/features/hud/mod.rs +++ b/src/features/hud/mod.rs @@ -44,14 +44,20 @@ fn setup(mut commands: Commands) { button( inventory::components::ButtonType::InventoryOpen, ButtonVariant::Secondary, - Node::default(), + Node { + padding: UiRect::all(px(10)), + ..default() + }, "Inventar", 16.0 ), button( ButtonType::SettingsOpen, ButtonVariant::Secondary, - Node::default(), + Node { + padding: UiRect::all(px(10)), + ..default() + }, "Einstellungen", 16.0 )