Skip to content

Commit 2647bfd

Browse files
committed
fix(client): improve activity layout
1 parent 22f9871 commit 2647bfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/features/property/components/PropertyActivities.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type ActivityListProps = {
3333

3434
function ActivityList({ items }: ActivityListProps) {
3535
return (
36-
<div className="grid grid-cols-4 gap-x-30px">
36+
<div className="grid grid-cols-4 gap-30px">
3737
{items.map((activityItem, i) => (
3838
<Fade direction="up" triggerOnce delay={300 * i} key={activityItem._id}>
3939
<ActivityItem item={activityItem} />

0 commit comments

Comments
 (0)