Skip to content

Commit

Permalink
Wrap all long values in description list
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaw3d committed Jun 20, 2023
1 parent db3245c commit 42e96f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
1 change: 1 addition & 0 deletions src/app/components/StyledDescriptionList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export const StyledDescriptionList = styled(InlineDescriptionList, {
},
dd: {
color: COLORS.brandExtraDark,
overflowWrap: 'anywhere',
},
...(standalone && {
'&&': {
Expand Down
8 changes: 1 addition & 7 deletions src/app/pages/TransactionDetailPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -387,13 +387,7 @@ export const TransactionDetailView: FC<{
<>
<dt>{t('transactions.encryption.resultNonce')}</dt>
<dd>
<Typography
variant="mono"
sx={{
fontWeight: 400,
overflowWrap: 'anywhere',
}}
>
<Typography variant="mono" sx={{ fontWeight: 400 }}>
{transaction.encryption_envelope.result_nonce}
</Typography>
</dd>
Expand Down

0 comments on commit 42e96f3

Please sign in to comment.