@use '../params/index.scss' as *;

.x-connect-enter {
  animation: x-connect-enter $x-animation-duration-fast;
  animation-timing-function: ease-in;
}
.x-connect-leave {
  animation: x-connect-leave $x-animation-duration-fast;
  animation-timing-function: ease-out;
}

@keyframes x-connect-enter {
  from {
    opacity: 0;
    transform: scaleY(0.8);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes x-connect-leave {
  from {
    opacity: 1;
    transform: scaleY(1);
  }
  to {
    opacity: 0;
    transform: scaleY(0.8);
  }
}
