I'm coding a website for my learning path and I got following issue:
When I Hover &__item, the animation property doesn't appears in style of &__selection...
sass code:
&__item {
  /*...*/
  __selection{
    /*...*/
  }
  &:hover &__selection {
    animation: animSelect 800ms ease-in-out 0ms 1;
  }
}