I'm having trouble changing the color of the calendar icon on my post. If I have autoprefixes enabled
module.exports = {
plugins: {
tailwindcss: {
config: join(__dirname, 'tailwind.config.js'),
},
autoprefixer: {},
},
};
this is my input
<span className="dark:text-dark-text text-xs text-gray-700">
End Date
</span>
<input
type="datetime-local"
className="dark:bg-dark-bg mt-1 block w-full rounded border-gray-400 text-sm dark:border-gray-600 dark:text-white"
value={value.customRangeEnd}
onChange={onChangeCustomRangeEnd}
/>
</label>