diff --git a/src/assets/language-icon.svg b/src/assets/language-icon.svg
deleted file mode 100644
index d242ea5e56ce..000000000000
--- a/src/assets/language-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/components/Dropdown/Dropdown.jsx b/src/components/Dropdown/Dropdown.jsx
index 4e64d6fa2a09..167122f28a9e 100644
--- a/src/components/Dropdown/Dropdown.jsx
+++ b/src/components/Dropdown/Dropdown.jsx
@@ -1,5 +1,4 @@
import { Component } from 'react';
-import LanguageIcon from '../../assets/language-icon.svg';
import './Dropdown.scss';
import PropTypes from 'prop-types';
@@ -62,11 +61,35 @@ export default class Dropdown extends Component {
aria-label="Select language"
onClick={this._handleClick.bind(this)}
>
-
+
{/* Commented out until media breakpoints are in place
{ items[0].title } */}
diff --git a/src/components/HelloDarkness.jsx b/src/components/HelloDarkness.jsx
index b320c7daa282..818d1f3f1246 100644
--- a/src/components/HelloDarkness.jsx
+++ b/src/components/HelloDarkness.jsx
@@ -39,11 +39,69 @@ export default function HelloDarkness() {
aria-label={
theme === DARK ? 'Switch to light theme' : 'Switch to dark theme'
}
- className="bg-transparent border-none cursor-pointer text-[16px] p-0 inline-flex items-center"
+ className="bg-transparent border-none cursor-pointer text-[16px] p-0 inline-flex items-center text-gray-100 hover:text-blue-200 transition-colors duration-200"
onClick={themeSwitcher}
data-testid="hello-darkness"
>
- {theme === DARK ? '🌙' : '☀️'}
+ {theme === DARK ? (
+
+ ) : (
+
+ )}
);
}
diff --git a/src/components/Navigation/Navigation.jsx b/src/components/Navigation/Navigation.jsx
index 2a71e5b5ebc3..763aaea05667 100644
--- a/src/components/Navigation/Navigation.jsx
+++ b/src/components/Navigation/Navigation.jsx
@@ -69,7 +69,7 @@ function NavigationIcon({ children, to, title }) {
return (
{children}
@@ -78,7 +78,7 @@ function NavigationIcon({ children, to, title }) {
}
const navigationIconProps = {
'aria-hidden': true,
- fill: '#fff',
+ fill: 'currentColor',
width: 16,
};