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 fa22def
Showing 1 changed file with 2 additions and 2 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 Down

0 comments on commit fa22def

Please sign in to comment.