-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
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
Object Position in JIT mode #5177
Comments
Will be fixed in the next patch release, hopefully Monday or Tuesday 👍 Thanks! |
Thanks for the quick fix! |
@adamwathan I have updated to the latest 2.2.11 release but cannot make it work with this class and JIT: object-[76%, 51%] |
Did you try removing the space? https://tailwindcss.com/docs/just-in-time-mode#arbitrary-value-support
|
Ensure that the |
What version of Tailwind CSS are you using?
2.2.4
What build tool (or framework if it abstracts the build tool) are you using?
Vite (with SvelteKit)
What version of Node.js are you using?
v14.17.3
What browser are you using?
Safari, Firefox
What operating system are you using?
macOS Big Sur
Reproduction repository
N/A
Describe your issue
Using dynamic values on Object Position (top, bottom etc.) doesn't work as expected.
I want to do this:
object-top-[30%]
Seems to be a bug:
object-[30%]
works butobject-[0,30%]
should compile toobject-position: 0 30%
but right now it compiles toobject-position: 0,30%
.The text was updated successfully, but these errors were encountered: