Skip to content

Commit

Permalink
Merge pull request #787 from DTS-STN/ken/a11y-4871
Browse files Browse the repository at this point in the history
Add h2 heading to application name and underline.
  • Loading branch information
ken-blanchard authored Nov 27, 2024
2 parents df8327a + bcb5b01 commit c686185
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/components/ApplicationNameBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ const ApplicationNameBar = ({ text, href }: ApplicationNameBarProps) => {
return (
<div id="app-bar" className="bg-blue-dark">
<section className="container mx-auto p-4">
<Link
href={href}
className="font-body text-lg font-bold text-white hover:underline md:text-[28px]"
>
{text}
</Link>
<h2>
<Link
href={href}
className="font-body text-lg font-bold text-white underline md:text-[28px]"
>
{text}
</Link>
</h2>
</section>
</div>
)
Expand Down

0 comments on commit c686185

Please sign in to comment.