Open lowv-developer opened 4 years ago
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; }
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