mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-02-02 08:42:11 -08:00
Fix select color
This commit is contained in:
parent
f89b477cbb
commit
04098ec193
|
@ -50,7 +50,7 @@ export const VariantSelectButton = ({
|
||||||
key={index}
|
key={index}
|
||||||
className={({ active }) =>
|
className={({ active }) =>
|
||||||
`relative cursor-default select-none py-2 pl-3 pr-9 ${
|
`relative cursor-default select-none py-2 pl-3 pr-9 ${
|
||||||
active ? 'bg-indigo-600' : ''
|
active ? 'bg-secondary' : ''
|
||||||
}`
|
}`
|
||||||
}
|
}
|
||||||
value={variant}
|
value={variant}
|
||||||
|
@ -68,7 +68,7 @@ export const VariantSelectButton = ({
|
||||||
{selected ? (
|
{selected ? (
|
||||||
<span
|
<span
|
||||||
className={`absolute inset-y-0 right-0 flex items-center pr-4 ${
|
className={`absolute inset-y-0 right-0 flex items-center pr-4 ${
|
||||||
active ? '' : 'text-indigo-600'
|
active ? '' : 'text-primaryInv'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<FiCheck className="h-5 w-5" aria-hidden="true" />
|
<FiCheck className="h-5 w-5" aria-hidden="true" />
|
||||||
|
|
Loading…
Reference in a new issue