We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.3.0
12.16
Chrome
Windows
NA
Upgrading from v0.2.0 to v0.3.0 removes all input styling.
Is there a migration step somewhere I missed?
Code:
<input className={`block w-full placeholder-gray-400 border-gray-300 focus:ring-java-500 focus:border-java-500 rounded px-3 py-2`} />
Before (0.2):
After (0.3):
The text was updated successfully, but these errors were encountered:
Seems like the default strategy was changed to class in 3bfbd1a, possibly by accident? @adamwathan
class
The docs seem to imply that class is optional.
In the meantime, you can workaround this by explicitly specifying the base strategy:
base
// tailwind.config.js plugins: [ require("@tailwindcss/forms")({ strategy: 'base', }), ],
Sorry, something went wrong.
Also experiencing this.
This is my form when @tailwindcss/forms:^2.1
@tailwindcss/forms:^2.1
And this is my form after upgrading to ^3.0
^3.0
Successfully merging a pull request may close this issue.
What version of @tailwindcss/forms are you using?
v0.3.0
What version of Node.js are you using?
12.16
What browser are you using?
Chrome
What operating system are you using?
Windows
Reproduction repository
NA
Upgrading from v0.2.0 to v0.3.0 removes all input styling.
Is there a migration step somewhere I missed?
Code:
Before (0.2):
After (0.3):
The text was updated successfully, but these errors were encountered: