Skip to content

Commit

Permalink
fix(ListItem): use dark class on demand
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Apr 27, 2022
1 parent a3cebb6 commit 409ef5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/components/ListItem.jsx
Expand Up @@ -88,7 +88,7 @@ const ListItem = forwardRef((props, ref) => {
const colors = {
text: cls(`text-black`, dark('dark:text-white')),
menuListItemText: cls(`text-primary`, dark('dark:text-white')),
menuListItemActiveBg: 'bg-primary dark:bg-primary',
menuListItemActiveBg: cls(`bg-primary`, dark('dark:bg-primary')),
...colorsProp,
};

Expand Down

0 comments on commit 409ef5d

Please sign in to comment.