<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@layer components {
  .typing-dots {
    span {
      @apply opacity-0;
      &amp;:nth-child(1) {
        animation: 1s type-animation infinite 0.33333s;
      }
      &amp;:nth-child(2) {
        animation: 1s type-animation infinite 0.66666s;
      }
      &amp;:nth-child(3) {
        animation: 1s type-animation infinite 0.99999s;
      }
    }
  }

  @keyframes type-animation {
    50% {
      @apply opacity-100;
    }
  }
}
</pre></body></html>