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:
parent
93fc648268
commit
9ae8516179
|
|
@ -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]),
|
||||
);
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue