Skip to content

Commit f4d4aac

Browse files
committed
fix(frontend) Match footer background to primary slate-700
1 parent ef9257b commit f4d4aac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/app/components/footer.tsx

Lines changed: 1 addition & 1 deletion
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="wb-info" tabIndex={-1} 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
exports[`Footer > should render footer > expected html 1`] = `
44
<div>
55
<footer
6-
class="bg-[#26374A]"
6+
class="bg-slate-700"
77
id="wb-info"
88
tabindex="-1"
99
>

0 commit comments

Comments
 (0)