From 9fb48137b062d2cc2974a1cd436e7d955a4acaa1 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 5 Sep 2019 15:17:11 +0200 Subject: Add a bit of padding to the `tour` example --- examples/tour/tour.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/tour') diff --git a/examples/tour/tour.rs b/examples/tour/tour.rs index d0be99b0..0a8d0a11 100644 --- a/examples/tour/tour.rs +++ b/examples/tour/tour.rs @@ -66,6 +66,7 @@ impl Tour { let element: Element<_> = Column::new() .max_width(500) + .padding(20) .spacing(20) .push(steps.view(self.debug).map(Message::StepMessage)) .push(controls) -- cgit