theme toggle changes

This commit is contained in:
Sascha 2025-08-15 11:28:34 +02:00
parent 4c141111ee
commit d58c3618ef
2 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,7 @@ export default function ThemeToggle({ theme, setTheme }: Props) {
};
return (
<button className="navbar__container__button" onClick={toggleTheme}>
<button className="navbar__container__button toggle-theme" onClick={toggleTheme}>
{theme === 'light' ? '💡' : '💤'}
</button>
);

View File

@ -138,3 +138,7 @@
transform: scale(1.2);
}
}
.toggle-theme {
width: 10px;
}