Skip to content

Commit

Permalink
Merge pull request #590 from newrelic/liz/text-updates
Browse files Browse the repository at this point in the history
Change resources title and uppercase tag text
  • Loading branch information
jerelmiller authored Aug 12, 2020
2 parents b44b777 + 0ae7179 commit ecf3e61
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/components/RelatedContentModules/Resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Resources = ({ page }) => {

return resources?.length > 0 ? (
<Section>
<Title>Resources</Title>
<Title>Related resources</Title>
<nav>
<ul
css={css`
Expand Down Expand Up @@ -85,7 +85,13 @@ const Resources = ({ page }) => {
)}
</LinkElement>

<Tag>{tag}</Tag>
<Tag
css={css`
text-transform: uppercase;
`}
>
{tag}
</Tag>
</li>
);
})}
Expand Down

0 comments on commit ecf3e61

Please sign in to comment.