Skip to content

Commit

Permalink
FW-6249 missed fv-charcoal replacements (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmcauliffe authored Nov 5, 2024
1 parent 94f3df1 commit df9e045
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/AdvancedSearchOptions/SingleSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function SingleSelect({ id, options, menuAlignment = 'right' }) {
`flex items-center cursor-default p-2 text-sm font-medium ${
focus
? 'bg-charcoal-50 text-scarlet-800'
: 'text-fv-charcoal-900'
: 'text-charcoal-900'
}`
}
value={option}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ function RadioButtonGroupPresentation({
<div className="flex items-center">
<span
className={`${
checked ? `border-${accentColor}` : 'border-fv-charcoal'
checked
? `border-${accentColor}`
: 'border-charcoal-900'
} bg-white h-5 w-5 rounded-full border flex items-center justify-center`}
aria-hidden="true"
>
Expand Down

0 comments on commit df9e045

Please sign in to comment.