Open
Description
It looks as Tailwind CSS dark mode styles cannot do anything when passed as props. For instance:
<MultiSelect
id="..."
closeDropdownOnSelect = 'true'
outerDivClass = "!dark:bg-gray-800 !bg-gray-100"
>
...
</MultiSelect>
the dark:
does not affect the component CSS style. Also, each Tailwind CSS style passed as props needs to be !important otherwise no effect.
Am I missing something?