I wish to create a new tailwind class that combines a few properties like this:
.my-new-class{
@apply transition-colors duration-1000;
}
But I am confused by the docs:
For more power, you can also use the @layer directive to add styles to Tailwind’s base, components, and utilities layers:
Where should I put this, in base, components, utilities?