Skip to content

Commit 98c278a

Browse files
committed
fix(RecentAuditLogs): adjust padding for no activity message display
- Updated the padding classes in the RecentAuditLogs component to improve the layout of the "No recent activity" message, enhancing visual consistency.
1 parent fdc51e8 commit 98c278a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/app/src/app/(app)/[orgId]/policies/[policyId]/components/RecentAuditLogs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ export const RecentAuditLogs = ({ logs }: { logs: AuditLogWithRelations[] }) =>
197197
</div>
198198
</div>
199199
) : (
200-
<div className="flex flex-col items-center justify-center p-6 text-center">
200+
<div className="flex flex-col items-center justify-center py-12 px-6 text-center">
201201
<ActivityIcon className="text-muted-foreground mb-2 h-8 w-8" />
202202
<p className="text-sm font-medium">No recent activity</p>
203203
<p className="text-muted-foreground text-xs">

0 commit comments

Comments
 (0)