style: some detail

This commit is contained in:
moonrailgun 2023-10-21 14:54:33 +08:00
parent 6e259134d7
commit 430471ec8a
3 changed files with 3 additions and 3 deletions

View File

@ -134,7 +134,7 @@ const WebsiteListTable: React.FC<{ workspaceId: string }> = React.memo(
format: 'text/plain',
text: trackScript,
}}
className="h-[96px] flex p-2 rounded bg-black bg-opacity-5 border border-black border-opacity-10"
className="h-[96px] flex p-2 rounded bg-black bg-opacity-5 border border-black border-opacity-10 overflow-auto"
>
<span>{trackScript}</span>
</Typography.Paragraph>

View File

@ -23,7 +23,7 @@ export const MonitorEventList: React.FC<MonitorEventListProps> = React.memo(
}
return (
<div className="space-y-4 py-2">
<div className="space-y-4">
{data.map((item) => (
<Card
key={item.id}

View File

@ -24,7 +24,7 @@ export const MonitorOverview: React.FC = React.memo(() => {
</div>
</Card>
</div>
<div>
<div className="py-2">
<MonitorEventList />
</div>
</div>