From ef498eb1af687baf673fb38a29b5cd1c1b1224d7 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 5 Oct 2019 05:17:59 +0200 Subject: Add some padding to the `tour` example --- examples/tour/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index 5017041a..790a1390 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -73,6 +73,7 @@ impl UserInterface for Tour { let element: Element<_> = Column::new() .max_width(Length::Units(500)) .spacing(20) + .padding(20) .push(steps.view(self.debug).map(Message::StepMessage)) .push(controls) .into(); -- cgit