Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/faqs/faqs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const FAQs: React.FC = () => {
transition={{ duration: 0.3 }}
>
<button
className={`accordion-toggle group flex justify-between items-center text-lg font-medium w-full transition-all duration-300
className={`cursor-pointer accordion-toggle group flex justify-between items-center text-lg font-medium w-full transition-all duration-300
${
isDark
? "text-gray-200 bg-gray-800 hover:text-indigo-400"
Expand Down
4 changes: 2 additions & 2 deletions src/components/ui/FirebaseAuthGithub.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const FirebaseAuthGithub: React.FC = () => {
<br />
<button
onClick={() => auth.signOut()}
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"
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"
>
<svg
height="20"
Expand Down Expand Up @@ -77,7 +77,7 @@ const FirebaseAuthGithub: React.FC = () => {
>
<button
onClick={handleGithubSignIn}
className="bg-black text-white px-4 py-2 rounded flex items-center gap-2"
className="bg-[#1f1e1e] hover:bg-[#2c2c2c] text-white px-4 py-2 rounded flex items-center gap-2 cursor-pointer"
>
<svg
height="24"
Expand Down
Loading