Improve theme toggle spacing/size

This commit is contained in:
2024-03-10 07:35:14 -05:00
parent 68d9299f11
commit c406e961d4

View File

@@ -16,6 +16,7 @@ export default function ThemeToggle() {
return (
<button
className="text-2xl mt-0.5 mr-1.5"
onClick={() => {
setTheme(themeState === "light" ? "dark" : "light");
}}