Skip to content

Commit 521fb6e

Browse files
Copilot0xrinegade
andcommitted
Fix button text visibility in onboarding modal with proper contrast
Co-authored-by: 0xrinegade <[email protected]>
1 parent ed7669e commit 521fb6e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/styles/components.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@
469469

470470
.btn-primary {
471471
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
472-
color: white;
472+
color: white !important;
473473
border: 1px solid var(--color-primary);
474474
padding: var(--spacing-3) var(--spacing-8);
475475
font-size: var(--font-size-base);
@@ -485,6 +485,7 @@
485485
.btn-primary:hover {
486486
background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
487487
border-color: var(--color-primary-dark);
488+
color: white !important;
488489
transform: translateY(-1px);
489490
box-shadow: var(--shadow-md);
490491
}
@@ -514,7 +515,7 @@
514515
.btn-text {
515516
background: none;
516517
border: none;
517-
color: var(--color-foreground-muted);
518+
color: #6B7280 !important;
518519
font-size: var(--font-size-base);
519520
font-weight: var(--font-weight-medium);
520521
cursor: pointer;
@@ -525,7 +526,7 @@
525526
}
526527

527528
.btn-text:hover {
528-
color: var(--color-foreground);
529+
color: #374151 !important;
529530
background-color: var(--color-background-alt);
530531
}
531532

0 commit comments

Comments
 (0)