Skip to content

Commit

Permalink
fix: text wrap (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
simboonlong authored Sep 6, 2023
1 parent 36cde53 commit 0ec19f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/DocumentStatus/DocumentStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export const IssuedBy: FunctionComponent<IssuedByProps> = ({ title = "Issued by"
? getV2FormattedDomainNames(verificationStatus)
: getV3IdentityVerificationText(document);
return (
<h2 id="issuedby" className="break-words leading-tight">
<span className="mr-2 inline-block break-all">{title}</span>
<span className="text-cerulean-500 inline-block">{formattedDomainNames}</span>
<h2 id="issuedby" className="my-2 leading-none">
<span className="mr-2 break-all">{title}</span>
<span className="text-cerulean-500 break-words">{formattedDomainNames}</span>
</h2>
);
};
Expand Down

0 comments on commit 0ec19f2

Please sign in to comment.