Skip to content

Commit

Permalink
fix(footer): add custom style to links
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Jul 31, 2024
1 parent e8616c6 commit d664858
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions packages/utah-design-system/src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,23 +189,35 @@ export const Footer = () => (
</div>
<div className="pt-6 text-center text-sm lg:pt-0">
<div className="space-x-2 leading-10 text-zinc-50 lg:space-x-4">
<a href="https://www.utah.gov" type="custom">
<a href="https://www.utah.gov" className="custom-style">
Utah.gov Home
</a>
<span className="border-l-2" aria-hidden="true"></span>
<a href="https://www.utah.gov/disclaimer.html" type="custom">
<a
href="https://www.utah.gov/disclaimer.html"
className="custom-style"
>
Terms of Use
</a>
<span className="border-l-2" aria-hidden="true"></span>
<a href="https://www.utah.gov/privacypolicy.html" type="custom">
<a
href="https://www.utah.gov/privacypolicy.html"
className="custom-style"
>
Privacy Policy
</a>
<span className="border-l-2" aria-hidden="true"></span>
<a href="https://www.utah.gov/accessibility.html" type="custom">
<a
href="https://www.utah.gov/accessibility.html"
className="custom-style"
>
Accessibility
</a>
<span className="border-l-2" aria-hidden="true"></span>
<a href="https://www.utah.gov/translate.html" type="custom">
<a
href="https://www.utah.gov/translate.html"
className="custom-style"
>
Translate
</a>
</div>
Expand Down

0 comments on commit d664858

Please sign in to comment.