tccd-ui 0.0.59 → 0.0.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -254,7 +254,7 @@ function DropdownMenu({
254
254
  disabled: option.disabled,
255
255
  className: `
256
256
  w-full px-3 py-2 text-left text-sm transition-colors duration-150
257
- ${option.disabled ? "text-gray-400 cursor-not-allowed" : "text-text hover:bg-secondary/10 hover:dark:bg-surface-glass-bg hover:text-secondary hover:dark:text-text cursor-pointer"}
257
+ ${option.disabled ? "text-gray-400 cursor-not-allowed" : "text-contrast dark:text-text hover:bg-secondary/10 hover:dark:bg-surface-glass-bg hover:text-secondary hover:dark:text-text cursor-pointer"}
258
258
  ${value === option.value ? "bg-secondary/20 text-secondary dark:bg-surface-glass-bg/50 dark:text-text font-medium" : ""}
259
259
  first:rounded-t-xl last:rounded-b-xl
260
260
  `,