Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(style): update button background color
Browse files Browse the repository at this point in the history
zacjones93 committed Jan 21, 2025
1 parent 2f35096 commit 145fc03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/bootcamp/components/SignUpForm.tsx
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ export default function SignUpForm() {
<Button
type="submit"
disabled={isSubmitting}
className="bg-[var(--accent-9)] hover:bg-[var(--accent-10)] text-black font-semibold transition-all duration-200 hover:scale-105 disabled:opacity-50 disabled:cursor-not-allowed"
className="bg-gray-50 dark:bg-gray-800/50 dark:text-white text-black font-semibold transition-all duration-200 hover:scale-105 disabled:opacity-50 disabled:cursor-not-allowed"
>
{isSubmitting ? 'Joining...' : 'Join Waitlist'}
</Button>

0 comments on commit 145fc03

Please sign in to comment.