From 3404fbd4bf491d6a2ede9ab738973a3315b55de5 Mon Sep 17 00:00:00 2001 From: Hugo Delaunay Date: Tue, 21 Jan 2025 09:49:59 +0100 Subject: [PATCH] chore: Updated top padding on intro page. --- lib/pages/intro/slides/slide.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/intro/slides/slide.dart b/lib/pages/intro/slides/slide.dart index 92324f8f..464f7aef 100644 --- a/lib/pages/intro/slides/slide.dart +++ b/lib/pages/intro/slides/slide.dart @@ -119,8 +119,8 @@ class IntroPageSlideWidgetState extends State with TickerP textAlign: TextAlign.center, child: Center( child: ListView( - padding: const EdgeInsets.only( - top: 80, + padding: EdgeInsets.only( + top: MediaQuery.of(context).size.width <= 768 ? 40 : 20, right: 20, left: 20, bottom: 20,