Skip to content

Commit

Permalink
fix(vth): logo focus
Browse files Browse the repository at this point in the history
  • Loading branch information
bddjong committed Nov 1, 2023
1 parent 758ff33 commit 3215184
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion apps/pdc-frontend/src/components/Logo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ interface LogoProps {
locale: string;
}
export const Logo = ({ locale }: LogoProps) => (
<Link href={`/${locale}`} className="utrecht-link" prefetch={false} aria-label="Gemeente Utrecht Logo">
<Link
href={`/${locale}`}
className="utrecht-link utrecht-link--html-a utrecht-link--box-content"
prefetch={false}
aria-label="Ga naar home pagina"
>
<svg width="188" height="101" viewBox="0 0 188 101" fill="none">
<g clipPath="url(#clip0_908_6411)">
<path
Expand Down
7 changes: 6 additions & 1 deletion apps/vth-frontend/src/components/Logo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ interface LogoProps {
locale: string;
}
export const Logo = ({ locale }: LogoProps) => (
<Link href={`/${locale}`} className="utrecht-link" prefetch={true} aria-label="Gemeente Utrecht Logo">
<Link
href={`/${locale}`}
className="utrecht-link utrecht-link--html-a utrecht-link--box-content"
prefetch={true}
aria-label="Ga naar home pagina"
>
<svg width="188" height="101" viewBox="0 0 188 101" fill="none">
<g clipPath="url(#clip0_908_6411)">
<path
Expand Down

0 comments on commit 3215184

Please sign in to comment.