feat: 热点事件UI调整

This commit is contained in:
zdl
2025-10-27 15:59:13 +08:00
parent 629c63f4ee
commit e568b5e05f
6 changed files with 11 additions and 19 deletions

View File

@@ -24,11 +24,12 @@ const HotEventsSection = ({ events }) => {
}
return (
<Card mt={8} bg={cardBg}>
<CardHeader>
<Card mt={0} bg={cardBg}>
<CardHeader pb={0}>
<Heading size="md">🔥 热点事件</Heading>
<p className="section-subtitle" style={{paddingTop: '8px'}}>展示最近5天内涨幅最高的事件助您把握市场热点</p>
</CardHeader>
<CardBody>
<CardBody py={0} px={4}>
<HotEvents events={events} />
</CardBody>
</Card>