From 80479eb1c70793477c9a8aaf3a9fb4088936fb79 Mon Sep 17 00:00:00 2001 From: Jordan Pittman Date: Fri, 21 Nov 2025 13:35:51 -0500 Subject: [PATCH 1/2] Add notes about individual property transforms --- src/docs/upgrade-guide.mdx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/docs/upgrade-guide.mdx b/src/docs/upgrade-guide.mdx index 14f7e0e21..e55da25eb 100644 --- a/src/docs/upgrade-guide.mdx +++ b/src/docs/upgrade-guide.mdx @@ -753,6 +753,34 @@ This means if you were adding an outline with a custom color on focus, you will ``` +### Individual transform properties + +The `rotate-*`, `scale-*`, and `translate-*` utilities are now based on the individual `rotate`, `scale`, and `translate` properties in CSS. Normally this shouldn't affect the behavior but there's a couple of cases to look out for: + +#### Resetting Transforms + +You previously would've been able to "reset" your rotate, scale, and translate utilities via `transform-none`. This no longer works and you will need to reset the individual properties instead: + +```html + + + + + +``` + +#### Transitions + +If you customize the list of transitioned properties and include `transform` (e.g. by writing `transition-[opacity,transform]`) then these utilities will no longer transition. To fix this, include the individual properties in the list. For example, if you want to transition changes when using `opacity-*` and `scale-*` utilities you should use `transition-[opacity,scale]` instead. + +```html + + + + + +``` + ### Disabling core plugins In v3 there was a `corePlugins` option you could use to completely disable certain utilities in the framework. This is no longer supported in v4. From 3b7e1fcc7cca64f991bb7dadfdd00382437adbc0 Mon Sep 17 00:00:00 2001 From: Jordan Pittman Date: Fri, 28 Nov 2025 07:02:10 -0500 Subject: [PATCH 2/2] remove space --- src/docs/upgrade-guide.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/upgrade-guide.mdx b/src/docs/upgrade-guide.mdx index e55da25eb..3f5c4f070 100644 --- a/src/docs/upgrade-guide.mdx +++ b/src/docs/upgrade-guide.mdx @@ -778,7 +778,7 @@ If you customize the list of transitioned properties and include `transform` (e. - + ``` ### Disabling core plugins