You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 6, 2020. It is now read-only.
I've upgraded Tailwind to 1.2.0. I use it among Ruby on Rails(6.0.2) & Webpack(4.41.2).
After upgrade, only overridden CSS-properties still working. It happens only in SCSS files. In CSS it's still working properly. I've changed (upgraded) only Tailwind package, and of course, there was updated all its dependencies (chalk, detective, lodash, ...)
For example:
.red-button { background: red; } // won't work, it will be disappeared totally
But if I repeat it's working, eg:
.red-button { background: red; } // will be erased, no matter which color in the first definition
.red-button { background: red; } // it's working
Or, even that crazy stuff:
.red-button {
background: red; // will be erased
& { background: red; } // it's working
}
I've upgraded Tailwind to 1.2.0. I use it among Ruby on Rails(6.0.2) & Webpack(4.41.2).
After upgrade, only overridden CSS-properties still working. It happens only in SCSS files. In CSS it's still working properly. I've changed (upgraded) only Tailwind package, and of course, there was updated all its dependencies (chalk, detective, lodash, ...)
For example:
But if I repeat it's working, eg:
Or, even that crazy stuff:
postcss.config.js:
I didn't change tailwind.js. It remained with the previous version.
What happens?
The text was updated successfully, but these errors were encountered: