Say you have a basic project setup:
@tailwind base;
@tailwind components;
@tailwind utilities;
And you want to add a basic utility that uses CSS that's not part of tailwinds default library:
@layer utilities {
.will-change-transform {
will-change: transform;
}
}
or
@layer utilities {
.ease {
transition: ease;
}
}
and you want to be able to @apply it to a custom class down the line without receiving an error:
.my-component {
@apply block hover:scale-110 w-full ease will-change-transform
}
How would you do this?