summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/typewriter.css
blob: e978312a9fbb80e87b97ce4f9092b933c7d61b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.blinking-cursor {
  animation: blink 1s step-end infinite;
}