Browse Source

add hover to locale dropdown

pull/505/head
mrjvs 2 years ago
parent
commit
c7b361bcac
  1. 2
      src/components/form/Dropdown.tsx
  2. 1
      themes/default.ts

2
src/components/form/Dropdown.tsx

@ -21,7 +21,7 @@ export function Dropdown(props: DropdownProps) { @@ -21,7 +21,7 @@ export function Dropdown(props: DropdownProps) {
<Listbox value={props.selectedItem} onChange={props.setSelectedItem}>
{() => (
<>
<Listbox.Button className="relative w-full rounded-lg bg-dropdown-background py-3 pl-3 pr-10 text-left text-white shadow-md focus:outline-none tabbable cursor-pointer">
<Listbox.Button className="relative w-full rounded-lg bg-dropdown-background hover:bg-dropdown-hoverBackground py-3 pl-3 pr-10 text-left text-white shadow-md focus:outline-none tabbable cursor-pointer">
<span className="flex gap-4 items-center truncate">
{props.selectedItem.leftIcon
? props.selectedItem.leftIcon

1
themes/default.ts

@ -97,6 +97,7 @@ export const defaultTheme = { @@ -97,6 +97,7 @@ export const defaultTheme = {
dropdown: {
background: "#171728",
altBackground: "#151525",
hoverBackground: "#202036",
highlight: "#afa349",
highlightHover: "#FCEC61",
text: "#846D95",

Loading…
Cancel
Save