tailwindcss-custom-forms
tailwindcss-custom-forms copied to clipboard
Custom-forms with applyComplexClasses on shows focus state as default state
custom-forms with applyComplexClasses on, shows focus state as default state Are you seeing the same?
When I deactivate applyComplexClasses everything comes back to normal
update: I fixed this by splitting my css, so it seems to me that this is an applyComplexClasses issue when you use comma separated classes
input[type=text], input[type=email], input[type=text] { @apply form-input; }
to
input[type=text] { @apply form-input; } input[type=email] { @apply form-input; } input[type=tel] { @apply form-input; }