JokeNetwork/faq

View on GitHub
components/textrotator.module.scss

Summary

Maintainability
Test Coverage
.word {
  display: inline-block;
}

.letter {
  display: inline-block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}