Skip to content

Commit

Permalink
Merge pull request #612 from alleslabs/fix/ui-tx-detail
Browse files Browse the repository at this point in the history
fix: tx-ui-detail
  • Loading branch information
songwongtp committed Nov 8, 2023
2 parents 4f9cbaa + a99d1c3 commit d25d49c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#612](https://github.com/alleslabs/celatone-frontend/pull/612) Add saved accounts page
- [#614](https://github.com/alleslabs/celatone-frontend/pull/614) Disabled saved account for now
- [#607](https://github.com/alleslabs/celatone-frontend/pull/607) Fix mintscan tracking in internal
- [#604](https://github.com/alleslabs/celatone-frontend/pull/604) Fix single delegation total card zero state
Expand Down
7 changes: 1 addition & 6 deletions src/lib/components/tx/TxReceiptRender.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,7 @@ const variantStyle: Record<
};

const ReceiptRow = ({ title, value, html }: TxReceipt) => (
<Flex
fontSize="14px"
w="full"
gap={title.includes("Event Log") ? 2 : 0}
direction={{ base: "column", md: "row" }}
>
<Flex fontSize="14px" w="full" direction={{ base: "column", md: "row" }}>
<Text variant="body2" mb={{ base: 1, md: 0 }}>
{title}
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ export const TxMsgDetails = ({
overflow="hidden"
transition="all 0.25s ease-in-out"
>
<TxReceiptRender variant="tx-page" receipts={receipts} gap={3} />
<TxReceiptRender
variant="tx-page"
receipts={receipts}
gap={{ base: 4, md: 3 }}
/>
</Flex>
);
};

3 comments on commit d25d49c

@vercel
Copy link

@vercel vercel bot commented on d25d49c Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d25d49c Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d25d49c Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.