fix: 完全移除 EventScrollList 顶部间距

问题:
- EventScrollList 顶部间距 (pt={2}, 8px) 仍然过大
- 用户期望事件列表紧贴搜索框,无顶部间距

修改:
- pt={2} 改为 pt={0}
- 顶部间距从 8px 完全移除为 0px
- 保持底部 pb={4} (16px) 和左右 px={2} (8px) 不变

视觉效果:
- EventScrollList 紧贴 CardHeader,更加紧凑
- 其他方向间距保持不变

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zdl
2025-11-03 14:41:05 +08:00
parent cedfd3978d
commit 9274323151

View File

@@ -106,7 +106,7 @@ const EventScrollList = ({
overflowX="auto"
overflowY="hidden"
gap={4}
pt={2}
pt={0}
pb={4}
px={2}
position="relative"