12 lines
196 B
CSS
12 lines
196 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@keyframes blink {
|
|
from, to { opacity: 1 }
|
|
50% { opacity: 0 }
|
|
}
|
|
|
|
.blinking-cursor {
|
|
animation: blink 1s step-end infinite;
|
|
} |