style(mobile-app): reduce ranking list item spacing from 12px to 4px

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-07 20:41:33 -08:00
parent 93fc648268
commit 9ae8516179
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ class _RankingPageState extends ConsumerState<RankingPage> {
itemCount: _mockRankingData.length,
itemBuilder: (context, index) {
return Padding(
padding: const EdgeInsets.only(bottom: 12),
padding: const EdgeInsets.only(bottom: 4),
child: _buildRankingItem(_mockRankingData[index]),
);
},