Skip to content

Commit 4aeb1e8

Browse files
committed
Added proper hover states on Github signin button & FAQ accordions
1 parent c6985e8 commit 4aeb1e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/faqs/faqs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const FAQs: React.FC = () => {
9191
transition={{ duration: 0.3 }}
9292
>
9393
<button
94-
className={`accordion-toggle group flex justify-between items-center text-lg font-medium w-full transition-all duration-300
94+
className={`cursor-pointer accordion-toggle group flex justify-between items-center text-lg font-medium w-full transition-all duration-300
9595
${
9696
isDark
9797
? "text-gray-200 bg-gray-800 hover:text-indigo-400"

src/components/ui/FirebaseAuthGithub.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const FirebaseAuthGithub: React.FC = () => {
3939
<br />
4040
<button
4141
onClick={() => auth.signOut()}
42-
className="bg-gray-900 hover:bg-gray-700 text-white px-4 py-1 rounded flex items-center gap-2 transition-colors duration-200 shadow-md font-semibold"
42+
className="cursor-pointer bg-gray-900 hover:bg-gray-700 text-white px-4 py-1 rounded flex items-center gap-2 transition-colors duration-200 shadow-md font-semibold"
4343
>
4444
<svg
4545
height="20"
@@ -77,7 +77,7 @@ const FirebaseAuthGithub: React.FC = () => {
7777
>
7878
<button
7979
onClick={handleGithubSignIn}
80-
className="bg-black text-white px-4 py-2 rounded flex items-center gap-2"
80+
className="bg-[#1f1e1e] hover:bg-[#2c2c2c] text-white px-4 py-2 rounded flex items-center gap-2 cursor-pointer"
8181
>
8282
<svg
8383
height="24"

0 commit comments

Comments
 (0)