Skip to content

Commit

Permalink
EXAMPLE: fix with-supabase signup button style (#53531)
Browse files Browse the repository at this point in the history
### What?
Fix example `with-supabase` https://github.com/vercel/next.js/tree/canary/examples/with-supabase signup button

### Why?
Signup button text color is not the right one so the developer is not able to see the text.

### How?
Updated the style using tailwind as it is what we are using in the example.

Before:
![image](https://github.com/vercel/next.js/assets/1652286/269c3be1-70ee-4b92-9161-4d1c35cbd01c)

After (Fixed):
![image](https://github.com/vercel/next.js/assets/1652286/3aa6af87-7958-470d-bf05-d1187963e792)
  • Loading branch information
gon250 authored Aug 4, 2023
1 parent aac4d9c commit a66aca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/with-supabase/app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default function Login() {
</button>
<button
formAction="/auth/sign-up"
className="border border-gray-700 rounded px-4 py-2 text-white mb-2"
className="border border-gray-700 rounded px-4 py-2 text-black mb-2"
>
Sign Up
</button>
Expand Down

0 comments on commit a66aca1

Please sign in to comment.