Skip to content

Commit 207b413

Browse files
Merge branch 'main' into code-scanning-faq-fix
2 parents 40f3b6e + 8f43bc4 commit 207b413

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

components/guides/ArticleCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const ArticleCard = ({ tabIndex, card, typeLabel }: Props) => {
1515
className="d-flex col-12 col-md-4 pr-0 pr-md-6 pr-lg-8"
1616
>
1717
<a className="no-underline d-flex flex-column py-3 border-bottom" href={card.href}>
18-
<h4 className="h4 color-fg-default mb-1" dangerouslySetInnerHTML={{ __html: card.title }} />
18+
<h3 className="h4 color-fg-default mb-1" dangerouslySetInnerHTML={{ __html: card.title }} />
1919
<div className="h6 text-uppercase" data-testid="article-card-type">
2020
{typeLabel}
2121
</div>

components/guides/GuidesHero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const GuidesHero = () => {
6363
>
6464
<StarFillIcon size={24} />
6565
</div>
66-
<h3 className="text-semibold my-4">{featuredTrack.title}</h3>
66+
<h2 className="text-semibold my-4 f3">{featuredTrack.title}</h2>
6767
<div className="f5 my-4">{featuredTrack.description}</div>
6868
{featuredTrack.guides && (
6969
<Link

components/guides/LearningTrack.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ export const LearningTrack = ({ track }: Props) => {
3232
<div className="Box-header color-bg-subtle p-4 d-flex flex-1 flex-items-start flex-wrap">
3333
<div className="d-flex flex-auto flex-items-start col-8 col-md-12 col-xl-8">
3434
<div className="my-xl-0 mr-xl-3">
35-
<h5 id={slug} className={cx('mb-3 color-text f3 text-semibold', styles.hashAnchor)}>
35+
<h3 id={slug} className={cx('mb-3 color-text f3 text-semibold', styles.hashAnchor)}>
3636
<a className="color-unset" href={`#${slug}`}>
3737
{track?.title}
3838
</a>
39-
</h5>
39+
</h3>
4040
<TruncateLines as="p" maxLines={3} className="color-text">
4141
{track?.description}
4242
</TruncateLines>
@@ -99,8 +99,8 @@ export const LearningTrack = ({ track }: Props) => {
9999
className="rounded-0 pl-7 py-4 width-full d-block Box-row d-flex flex-items-center color-fg-default no-underline"
100100
href={`${guide.href}?learn=${track?.trackName}&learnProduct=${track?.trackProduct}`}
101101
>
102-
<h5
103-
className="flex-auto pr-2"
102+
<h4
103+
className="flex-auto pr-2 f5"
104104
dangerouslySetInnerHTML={{ __html: guide.title }}
105105
/>
106106
<div className="color-fg-muted h6 text-uppercase flex-shrink-0">

components/landing/ProductReleases.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function ProductReleases() {
2626
return (
2727
<div key={releaseNumber} className="col-lg-4 col-12 mb-4">
2828
<div className="Box color-shadow-medium height-full d-block hover-shadow-large no-underline color-fg-default p-5">
29-
<h2>{allVersions[releaseVersion].versionTitle}</h2>
29+
<h3 className="f2">{allVersions[releaseVersion].versionTitle}</h3>
3030
<p className="mt-2 mb-4 color-fg-muted">
3131
<ListUnorderedIcon />{' '}
3232
<Link

0 commit comments

Comments
 (0)