fix: add nonbreaking space before links

This commit is contained in:
Caitlin Kilroy 2023-05-16 10:06:02 -04:00
parent 020e1b7324
commit 7ab69e00af
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ const LinkedSectionItem = ({
</TxDiv>
</Link>
<div className="content-section-item-description">
{description || children}
{description || children} &nbsp;
<Link to={linkURL}>
{linkText}
</Link>

View file

@ -47,7 +47,7 @@ const StaticLinkSectionItem = ({
</div>
</a>
<div className="content-section-item-description">
{description || children}
{description || children} &nbsp;
<a
href={linkURL}
rel="noopener noreferrer"