Skip to content

Commit

Permalink
Activity section uniform padding (#5282)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloud11PL authored Nov 27, 2024
1 parent 1517fbf commit 192d231
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/mean-eyes-taste.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Activity section in home page now has uniform padding with header, stock and sales.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const HomeActivities = () => {
<DashboardCard.Header paddingX={3}>
<DashboardCard.Title>{title}</DashboardCard.Title>
</DashboardCard.Header>
<DashboardCard.Content paddingX={3}>
<DashboardCard.Content paddingX={3} paddingBottom={6}>
<Box display="flex" flexDirection="column" gap={5}>
<Skeleton height={3} />
<Skeleton __width="80%" height={3} />
Expand All @@ -61,7 +61,7 @@ export const HomeActivities = () => {
<DashboardCard.Header paddingX={3}>
<DashboardCard.Title>{title}</DashboardCard.Title>
</DashboardCard.Header>
<DashboardCard.Content paddingX={3}>
<DashboardCard.Content paddingX={3} paddingBottom={5}>
<List>
{renderCollection(
activities,
Expand Down

0 comments on commit 192d231

Please sign in to comment.