🤢 fix(ui): UsageLogsTable skeleton dimensions to avoid layout shift

This commit is contained in:
t0ng7u
2025-07-19 15:21:42 +08:00
parent e944983567
commit 1b739e87ae

View File

@@ -53,9 +53,9 @@ const LogsActions = ({
// Skeleton placeholder layout (three tag-size blocks)
const placeholder = (
<Space>
<Skeleton.Title style={{ width: 108, height: 26, borderRadius: 6 }} />
<Skeleton.Title style={{ width: 65, height: 26, borderRadius: 6 }} />
<Skeleton.Title style={{ width: 64, height: 26, borderRadius: 6 }} />
<Skeleton.Title style={{ width: 108, height: 21, borderRadius: 6 }} />
<Skeleton.Title style={{ width: 65, height: 21, borderRadius: 6 }} />
<Skeleton.Title style={{ width: 64, height: 21, borderRadius: 6 }} />
</Space>
);