Fix mobile navigation buttons color

This commit is contained in:
Hazem Krimi
2021-09-05 18:47:45 +01:00
parent 9d4327f3c7
commit 0b49477ee8
3 changed files with 7 additions and 1 deletions
+2
View File
@@ -28,11 +28,13 @@ const DarkMode: FC = ({ children }) => {
root.style.setProperty('--background', '#F9F9F9');
root.style.setProperty('--secondary-background', 'white');
root.style.setProperty('--text', 'black');
root.style.setProperty('--text-inverted', 'white');
} else {
window.localStorage.setItem('theme', 'dark');
root.style.setProperty('--background', '#262626');
root.style.setProperty('--secondary-background', '#2F2F2F');
root.style.setProperty('--text', 'white');
root.style.setProperty('--text-inverted', 'black');
}
dispatch({ type: 'TOGGLE' });