From 262d36cd2db733667eb74981246312ac47113009 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 31 Jul 2025 01:20:11 +0800 Subject: [PATCH] :bug: Fix bugs --- lib/screens/explore.dart | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/lib/screens/explore.dart b/lib/screens/explore.dart index f515114..208710b 100644 --- a/lib/screens/explore.dart +++ b/lib/screens/explore.dart @@ -208,13 +208,12 @@ class ExploreScreen extends HookConsumerWidget { CheckInWidget( margin: EdgeInsets.only( left: 8, - right: 16, + right: 12, top: 16, - bottom: 8, ), ), Card( - margin: EdgeInsets.only(left: 8, right: 16, top: 8), + margin: EdgeInsets.only(left: 8, right: 12, top: 8), child: Column( children: [ // Use the reusable EventCalendarWidget @@ -229,11 +228,7 @@ class ExploreScreen extends HookConsumerWidget { ), ), FortuneGraphWidget( - margin: EdgeInsets.only( - left: 8, - right: 16, - top: 16, - ), + margin: EdgeInsets.only(left: 8, right: 12, top: 8), events: events, constrainWidth: true, onPointSelected: onDaySelected,