diff --git a/frontend/mobile-app/lib/features/ranking/presentation/pages/ranking_page.dart b/frontend/mobile-app/lib/features/ranking/presentation/pages/ranking_page.dart index 83591cf7..fee063cb 100644 --- a/frontend/mobile-app/lib/features/ranking/presentation/pages/ranking_page.dart +++ b/frontend/mobile-app/lib/features/ranking/presentation/pages/ranking_page.dart @@ -307,7 +307,7 @@ class _RankingPageState extends ConsumerState { itemCount: _mockRankingData.length, itemBuilder: (context, index) { return Padding( - padding: const EdgeInsets.only(bottom: 12), + padding: const EdgeInsets.only(bottom: 4), child: _buildRankingItem(_mockRankingData[index]), ); },