Skip to content

Commit

Permalink
chore: fix padding of asset list items in activity, ref #5802
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Sep 2, 2024
1 parent e554376 commit 3e4d8a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function TransactionItemLayout({
txValue,
}: TransactionItemLayoutProps) {
return (
<Pressable onClick={openTxLink} my="space.02">
<Pressable onClick={openTxLink} p='space.03'>
<ItemLayout
flagImg={txIcon && txIcon}
titleLeft={txTitle}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function PendingTransactionListLayout({ children }: PendingTransactionLis
<styled.span color="ink.text-subdued" textStyle="body.02">
Pending
</styled.span>
<Stack mt="space.04" pb="space.06">
<Stack pb="space.06">
{children}
</Stack>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function SubmittedTransactionListLayout({ children }: SubmittedTransactio
<styled.span textStyle="body.02" color="ink.text-subdued">
Submitted
</styled.span>
<Stack mt="space.04" pb="space.06" gap="space.05">
<Stack pb="space.06" gap="space.05">
{children}
</Stack>
</>
Expand Down

0 comments on commit 3e4d8a2

Please sign in to comment.