Skip to content

Commit

Permalink
chore: remove x padding
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed Jun 24, 2024
1 parent b945f25 commit 85fc7c3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const RecentActivityView = ({ network }: RecentActivityViewProps) => {
<CardHeader className="font-bold text-xl">
Recent endorsements
</CardHeader>
<CardContent className="relative">
<CardContent className="relative px-0">
<AnimatePresence>
{data?.endorsements?.map((endorsement, i) => (
<ListItem key={endorsement.id}>
Expand All @@ -70,7 +70,7 @@ export const RecentActivityView = ({ network }: RecentActivityViewProps) => {
</Card>
<Card className="flex-1 overflow-hidden px-0">
<CardHeader className="font-bold text-xl">Recent donations</CardHeader>
<CardContent className="relative">
<CardContent className="relative px-0">
<AnimatePresence>
{data?.donations?.map((donation, i) => (
<ListItem key={donation.id}>
Expand All @@ -95,15 +95,15 @@ export const RecentActivityViewSkeleton = () => {
<CardHeader className="font-bold text-xl">
Recent endorsements
</CardHeader>
<CardContent className="relative">
<CardContent className="relative px-0">
{Array.from({ length: 5 }).map((_, i) => (
<RecentEndorsementSkeleton key={i} />
))}
</CardContent>
</Card>
<Card className="flex-1 overflow-hidden px-0">
<CardHeader className="font-bold text-xl">Recent donations</CardHeader>
<CardContent className="relative">
<CardContent className="relative px-0">
{Array.from({ length: 5 }).map((_, i) => (
<RecentDonationSkeleton key={i} />
))}
Expand Down

0 comments on commit 85fc7c3

Please sign in to comment.