tailwindcss-custom-forms icon indicating copy to clipboard operation
tailwindcss-custom-forms copied to clipboard

Custom-forms with applyComplexClasses on shows focus state as default state

Open lowv-developer opened this issue 4 years ago • 1 comments

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

lowv-developer avatar Aug 25 '20 13:08 lowv-developer

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; }

lowv-developer avatar Aug 25 '20 13:08 lowv-developer