Skip to content

Commit 87848fc

Browse files
fix(fronted) Fix skip navigation to footer (#250)
* fix(fronted) Fix skip navigation to footer * fix(frontend) Match footer background to primary slate-700
1 parent 36faae8 commit 87848fc

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

frontend/app/components/footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export function Footer() {
66
const { t } = useTranslation(['common']);
77

88
return (
9-
<footer id="footer" className="bg-[#26374A]">
9+
<footer id="wb-info" tabIndex={-1} className="bg-slate-700">
1010
<section>
1111
<h2 className="sr-only" id="accessibleSectionHeader1">
1212
{t('common:footer.header-accessible')}

frontend/tests/components/__snapshots__/footer.test.tsx.snap

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
exports[`Footer > should render footer > expected html 1`] = `
44
<div>
55
<footer
6-
class="bg-[#26374A]"
7-
id="footer"
6+
class="bg-slate-700"
7+
id="wb-info"
8+
tabindex="-1"
89
>
910
<section>
1011
<h2

0 commit comments

Comments
 (0)