Skip to content

Commit

Permalink
Fix comparison input text color in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
vinibrsl committed Feb 23, 2023
1 parent 06e366f commit 2140986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/dashboard/comparison-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const ComparisonInput = function({ site, query, history }) {
<Menu.Item
key={value}
onClick={() => update(value)}
className="px-4 py-2 leading-tight hover:bg-gray-100 hover:text-gray-900 dark:hover:bg-gray-900 dark:hover:text-gray-100 flex hover:cursor-pointer">
className="px-4 py-2 leading-tight hover:bg-gray-100 dark:text-white hover:text-gray-900 dark:hover:bg-gray-900 dark:hover:text-gray-100 flex hover:cursor-pointer">
<span className={labelClass}>{ label }</span>
</Menu.Item>
)
Expand Down

0 comments on commit 2140986

Please sign in to comment.