Simplify modal, badge, and component styles to dark-first (#29)
Co-authored-by: Julian Tabel <juliantabel.jt@gmail.com> Co-committed-by: Julian Tabel <juliantabel.jt@gmail.com>
This commit was merged in pull request #29.
This commit is contained in:
@@ -27,7 +27,7 @@ export function StepIndicator({
|
||||
disabled={!isCompleted}
|
||||
className={`flex items-center gap-2 text-sm font-medium ${
|
||||
isCompleted
|
||||
? 'text-text-link cursor-pointer hover:text-blue-700 dark:hover:text-blue-300'
|
||||
? 'text-text-link cursor-pointer hover:text-accent-300'
|
||||
: isCurrent
|
||||
? 'text-text-primary'
|
||||
: 'text-text-muted cursor-default'
|
||||
@@ -38,7 +38,7 @@ export function StepIndicator({
|
||||
isCompleted
|
||||
? 'bg-blue-600 text-white'
|
||||
: isCurrent
|
||||
? 'border-2 border-blue-600 text-blue-600 dark:border-blue-400 dark:text-blue-400'
|
||||
? 'border-2 border-accent-400 text-accent-400'
|
||||
: 'border-2 border-border-default text-text-muted'
|
||||
}`}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user