You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@apply cannot be used with .transition-delay-default because .transition-delay-default either cannot be found, or its actual definition includes a pseudo-selector like :hover, :active, etc. If you're sure that .transition-delay-default exists, make sure that any @import statements are being properly processed before Tailwind CSS sees your CSS, as @apply can only be used for classes in the same CSS tree.
If I use @apply transition-delay-long or @apply transition-delay-longer, it works fine, but it will not allow me to use default for some reason.
The text was updated successfully, but these errors were encountered:
flyingL123
changed the title
How to use with @apply
How to use with @apply default option
Sep 25, 2019
If I want to use one of the default options for a transition property via the
@apply
method, how can I do this? For example:Results in an error:
If I use
@apply transition-delay-long
or@apply transition-delay-longer
, it works fine, but it will not allow me to usedefault
for some reason.The text was updated successfully, but these errors were encountered: