@@ -84,7 +84,7 @@ export default function AuthPage() {
8484 < button
8585 type = "submit"
8686 disabled = { busy }
87- className = { `w-full py-2 rounded-md font-semibold mt-4 transition ${
87+ className = { `w-full py-2 rounded-md font-semibold mt-4 transition hover:cursor-pointer ${
8888 busy
8989 ? "bg-indigo-700/60 cursor-not-allowed"
9090 : "bg-indigo-600 hover:bg-indigo-500 shadow-[0_0_20px_rgba(140,120,255,0.7)]"
@@ -102,7 +102,7 @@ export default function AuthPage() {
102102 { /* Google */ }
103103 < div className = "" >
104104 < button
105- className = "w-full p-2 rounded-md bg-transparent border border-white/40 focus :border-indigo-400 focus :shadow-[0_0_12px_rgba(140,120,255,0.8)] outline-none transition hover:cursor-pointer"
105+ className = "w-full p-2 rounded-md bg-transparent border border-white/40 hover :border-indigo-400 hover :shadow-[0_0_12px_rgba(140,120,255,0.8)] outline-none transition hover:cursor-pointer"
106106 onClick = { ( ) => handleOAuthLogin ( "google" ) }
107107 >
108108 < div className = "flex flex-row items-center justify-center gap-2 font-semibold" >
@@ -115,7 +115,7 @@ export default function AuthPage() {
115115 { /* Github */ }
116116 < div >
117117 < button
118- className = "w-full p-2 rounded-md bg-transparent border border-white/40 focus :border-indigo-400 focus :shadow-[0_0_12px_rgba(140,120,255,0.8)] outline-none transition"
118+ className = "w-full p-2 rounded-md bg-transparent border border-white/40 hover :border-indigo-400 hover :shadow-[0_0_12px_rgba(140,120,255,0.8)] outline-none transition hover:cursor-pointer "
119119 onClick = { ( ) => handleOAuthLogin ( "github" ) }
120120 >
121121 < div className = "flex flex-row items-center justify-center gap-2 font-semibold" >
@@ -130,7 +130,7 @@ export default function AuthPage() {
130130 < button
131131 type = "button"
132132 onClick = { ( ) => setMode ( mode === "login" ? "signup" : "login" ) }
133- className = "text-sm text-indigo-300 hover:text-indigo-200 transition mt-2 underline"
133+ className = "text-sm text-indigo-300 hover:text-indigo-200 transition mt-2 underline hover: cursor-pointer "
134134 >
135135 { mode === "login" ? "Join the Realm" : "Return to Login" }
136136 </ button >
0 commit comments