Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
feat: tx link color (#207)
Browse files Browse the repository at this point in the history
* feat: tx link color

* chore: audit fix

* refactor: style
  • Loading branch information
matt-user authored Jan 15, 2024
1 parent 6583e38 commit 5c3d52d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
"undici@>=2.0.0 <5.19.1": ">=5.19.1",
"@babel/traverse@<7.23.2": ">=7.23.2",
"undici@<5.26.2": ">=5.26.2",
"axios@>=0.8.1 <1.6.0": ">=1.6.0"
"axios@>=0.8.1 <1.6.0": ">=1.6.0",
"follow-redirects@<1.15.4": ">=1.15.4"
}
},
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const BridgeTxOverview = ({
<Box.Stack css={styles.stack}>
<Box.Flex css={styles.txItem}>
<Text css={styles.labelText}>ID</Text>
<Link href={explorerLink} isExternal css={styles.infoText}>
<Link href={explorerLink} isExternal css={styles.linkText}>
<Box aria-label="Transaction ID">{transactionId.toString()}</Box>
</Link>
</Box.Flex>
Expand Down Expand Up @@ -100,6 +100,10 @@ const styles = {
fontSize: '$sm',
color: '$intentsBase12',
}),
linkText: cssObj({
fontSize: '$sm',
color: '$intentsPrimary9',
}),
directionInfo: cssObj({
gap: '$1',
alignItems: 'center',
Expand Down
17 changes: 9 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5c3d52d

Please sign in to comment.