Skip to content

Commit 5a3a377

Browse files
committed
style: theme switch button missing cursor-pointer
1 parent 8c41476 commit 5a3a377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/layouts/page-header/theme-switcher.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function ThemeSwitcher() {
1919
if (!mounted) return null;
2020

2121
return (
22-
<Button variant="ghost" className="size-8 px-0" onClick={toggleTheme}>
22+
<Button variant="ghost" className="size-8 cursor-pointer px-0" onClick={toggleTheme}>
2323
<SunIcon className="hidden [html.dark_&]:block" />
2424
<MoonIcon className="hidden [html.light_&]:block" />
2525
<span className="sr-only">Toggle theme</span>

0 commit comments

Comments
 (0)