= ({
{dictionary.copyright}
{dictionary.languagePicker.options.length > 1 && (
-
+
+
+
)}
diff --git a/src/features/common/components/footer/footer.module.scss b/src/features/common/components/footer/footer.module.scss
index 83710432..16ddbb81 100644
--- a/src/features/common/components/footer/footer.module.scss
+++ b/src/features/common/components/footer/footer.module.scss
@@ -267,3 +267,14 @@
color: var(--color_fg_default);
}
+
+.subFooter__languagePicker {
+ display: flex;
+ align-items: center;
+ gap: 0.25rem;
+ color: var(--color_fg_default);
+
+ &:focus-within {
+ color: (var(--color_fg_bold));
+ }
+}
From 32132a2b25742b33538c228fe2ebaad679fecd6e Mon Sep 17 00:00:00 2001
From: Christian Samaniego
<199278128+christiansamaniego-okta@users.noreply.github.com>
Date: Wed, 15 Oct 2025 12:36:44 -0500
Subject: [PATCH 5/5] adjust hover style
---
src/features/common/components/footer/footer.component.tsx | 1 +
src/features/common/components/footer/footer.module.scss | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/features/common/components/footer/footer.component.tsx b/src/features/common/components/footer/footer.component.tsx
index 8d1a4443..1c91d81c 100644
--- a/src/features/common/components/footer/footer.component.tsx
+++ b/src/features/common/components/footer/footer.component.tsx
@@ -235,6 +235,7 @@ export const FooterComponent: React.FC = ({
padding: "0px",
height: "100%",
alignSelf: "center",
+ color: "inherit",
}),
valueContainer: (base) => ({
...base,
diff --git a/src/features/common/components/footer/footer.module.scss b/src/features/common/components/footer/footer.module.scss
index 16ddbb81..0607c215 100644
--- a/src/features/common/components/footer/footer.module.scss
+++ b/src/features/common/components/footer/footer.module.scss
@@ -274,7 +274,7 @@
gap: 0.25rem;
color: var(--color_fg_default);
- &:focus-within {
+ &:hover {
color: (var(--color_fg_bold));
}
}