From e2169a26c24d73cff31cc3fe917233bc3dc09190 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 15 Aug 2022 23:11:54 -0500 Subject: [PATCH] Remove padding bottom on photos page mobile --- mobile/lib/modules/home/views/home_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/modules/home/views/home_page.dart b/mobile/lib/modules/home/views/home_page.dart index 7bb1dbb828..e532bf7e5a 100644 --- a/mobile/lib/modules/home/views/home_page.dart +++ b/mobile/lib/modules/home/views/home_page.dart @@ -117,7 +117,7 @@ class HomePage extends HookConsumerWidget { ], ), Padding( - padding: const EdgeInsets.only(top: 60.0, bottom: 30.0), + padding: const EdgeInsets.only(top: 60.0, bottom: 0.0), child: DraggableScrollbar.semicircle( backgroundColor: Theme.of(context).hintColor, controller: scrollController,