Mushroom Cards - Build a beautiful dashboard easily ๐Ÿ„ (Part 2)

Continuing the discussion from Mushroom Cards - Build a beautiful dashboard easily :mushroom: (Part 1):

Iโ€™m trying to use any of your animations for mushroom-template-card but none of them work, even the simplest ones like the fan animation, I just copy and paste your code, I see the fan icon but it doesnโ€™t spin.

at the same time I have a working animation for mushroom-chips-card

hereโ€™s a piece of code from card_mod:

mushroom-template-chip:nth-child(5)$: |
  :host {
    animation: spin 1s linear infinite;
  } 
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }