-
I've read all other discussions around it putting blame on lack of
(save as Executing: Outputs: I've tried this with and without the Is |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You're doing something that is wrong in v4. You need to "register" the class name into Tailwind using the @import "tailwindcss";
-.base-style {
+@utility base-style {
@apply mx-4;
}
.augmented-style {
@apply base-style mx-8;
} |
Beta Was this translation helpful? Give feedback.
-
Legend, thank you. This drove me batty... I'll need to contribute a section to the upgrade guide because it is not very evident. |
Beta Was this translation helpful? Give feedback.
You're doing something that is wrong in v4.
You need to "register" the class name into Tailwind using the
@utility
directive like: