Tailwind 4.3.3 stopped nesting variants under the utility class and emits compound selectors instead:
/* <= 4.3.2 */ /* 4.3.3 */
.active\:bg-subtle { &:active {…} } .active\:bg-subtle:active {…}
Uniwind only reads variant tokens from nested rules, so on the flattened form it never sets the active/disabled/theme flag.
Found by @juliusmarminge pingdotgg/t3code#9355
Tailwind 4.3.3 stopped nesting variants under the utility class and emits compound selectors instead:
Uniwind only reads variant tokens from nested rules, so on the flattened form it never sets the active/disabled/theme flag.
Found by @juliusmarminge pingdotgg/t3code#9355