From 9ae8516179f92453f17de0502a874709dd4accee Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 7 Dec 2025 20:41:33 -0800 Subject: [PATCH] style(mobile-app): reduce ranking list item spacing from 12px to 4px MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../lib/features/ranking/presentation/pages/ranking_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]), ); },