fix(ui): apply pointer cursor to theme toggle and Google sign-up buttons

This commit is contained in:
Tejas Benibagde 2025-04-11 05:13:46 +00:00
parent 129c8129e6
commit b5653d4156
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ export function ThemeTogglerComponent() {
onClick={() => {
theme === "dark" ? setTheme("light") : setTheme("dark");
}}
className="w-8 h-8 flex hover:bg-gray-50 dark:hover:bg-white/[0.1] rounded-lg items-center justify-center outline-none focus:ring-0 focus:outline-none active:ring-0 active:outline-none overflow-hidden"
className="w-8 h-8 flex hover:bg-gray-50 dark:hover:bg-white/[0.1] rounded-lg items-center cursor-pointer justify-center outline-none focus:ring-0 focus:outline-none active:ring-0 active:outline-none overflow-hidden"
>
{theme === "light" && (
<motion.div