mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
Fix mobile navigation buttons color
This commit is contained in:
@@ -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' });
|
||||
|
||||
@@ -45,7 +45,7 @@ const Bar = styled.nav<StyledProps>`
|
||||
margin: 0rem 1rem;
|
||||
|
||||
button {
|
||||
color: var(--text) !important;
|
||||
color: var(--text-inverted) !important;
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -81,6 +81,10 @@ class Doc extends Document {
|
||||
'--text',
|
||||
theme === 'light' ? 'black' : 'white'
|
||||
);
|
||||
root.style.setProperty(
|
||||
'--text-inverted',
|
||||
theme === 'light' ? 'white' : 'black'
|
||||
);
|
||||
})();
|
||||
`
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user