Skip to content

Commit

Permalink
chore: fix icon padding, ref #4693
Browse files Browse the repository at this point in the history
  • Loading branch information
Nithishvb authored and pete-watters committed Jan 18, 2024
1 parent 4cd16d3 commit 7f9e16c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/components/info-card/info-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ interface InfoCardRowProps {
export function InfoCardRow({ title, value, titleAdditionalElement, ...props }: InfoCardRowProps) {
return (
<HStack alignItems="start" fontSize="14px" justifyContent="space-between" {...props}>

Check failure on line 32 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

'</' expected.
<<<<<<< HEAD

Check failure on line 33 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Merge conflict marker encountered.
<Flex alignItems="center">

Check failure on line 34 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

JSX element 'Flex' has no corresponding closing tag.
<styled.span color="accent.text-subdued" mr="space.01" textStyle="body.02">
=======
<Flex alignItems="center" gap="space.01">
<styled.span textStyle="body.02" color="accent.text-subdued">
>>>>>>> fd3ddec428 (Fix padding between label and tooltip icon on transaction review screen)

Check failure on line 39 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Unexpected token. Did you mean `{'>'}` or `&gt;`?

Check failure on line 39 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Unexpected token. Did you mean `{'>'}` or `&gt;`?

Check failure on line 39 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Unexpected token. Did you mean `{'>'}` or `&gt;`?

Check failure on line 39 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Unexpected token. Did you mean `{'>'}` or `&gt;`?

Check failure on line 39 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Unexpected token. Did you mean `{'>'}` or `&gt;`?

Check failure on line 39 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Unexpected token. Did you mean `{'>'}` or `&gt;`?

Check failure on line 39 in src/app/components/info-card/info-card.tsx

View workflow job for this annotation

GitHub Actions / typecheck

Unexpected token. Did you mean `{'>'}` or `&gt;`?
{title}
</styled.span>
{titleAdditionalElement && titleAdditionalElement}
Expand Down

0 comments on commit 7f9e16c

Please sign in to comment.