1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
@tailwind base; @tailwind components; @tailwind utilities; .scribble { stroke-dasharray: 24; stroke-dashoffset: 24; } @keyframes scribble { 0% { stroke-dashoffset: 24; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 24; } }