[v4] keyframes ouput by @tailwindcss/theme
#15133
-
Hey! When using @keyframes spin {
to {
transform: rotate(360deg)
}
}
/* etc. */ Could these be moved to My issue is, as always, with emails 🫣 Animations are almost never used in HTML emails, so I'd have to remove them manually from the output. The problem with that is that some users might actually need them, like when using Maizzle to build a small landing page or when coding progressively enhanced emails, in which case they might write Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey! These are only output if a corresponding @theme {
--animate-*: initial;
} Does that help? |
Beta Was this translation helpful? Give feedback.
Hey! These are only output if a corresponding
--animate-*
variable exists, so if you know the animations won't be used you can remove the keyframes by doing this:Does that help?