Files
my-portfolio/BeauFindlay/BeauFindlay/wwwroot/css/app.css
2024-03-06 21:37:45 +00:00

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;
}