mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-18 13:18:59 -04:00
fix: text color
This commit is contained in:
@@ -28,7 +28,7 @@ export const Select = ({ value, onChange, className, options, ...rest }: SelectP
|
||||
{...rest}
|
||||
className={cn('', className)}
|
||||
>
|
||||
<Button className="flex w-full gap-2 rounded border border-solid border-[--hl-sm] px-2 py-1">
|
||||
<Button className="flex w-full gap-2 rounded border border-solid border-[--hl-sm] px-2 py-1 text-[--color-font]">
|
||||
<SelectValue className="flex-1" />
|
||||
<span aria-hidden="true">
|
||||
<Icon icon="chevron-down" />
|
||||
@@ -39,7 +39,7 @@ export const Select = ({ value, onChange, className, options, ...rest }: SelectP
|
||||
{options?.map(option => (
|
||||
<ListBoxItem
|
||||
className={({ isHovered, isPressed, isFocused }) =>
|
||||
cn('flex min-h-[32px] cursor-pointer items-center px-2', {
|
||||
cn('flex min-h-[32px] cursor-pointer items-center px-2 text-[--color-font]', {
|
||||
'bg-[--hl-xs]': isHovered || isPressed || isFocused,
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user