CoolFace
Apppublic

M055YM055/bugaboo-bundle-buzz

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css18 linesDownload Raw Back to root
1/* Custom styles that extend Tailwind */2body {3    font-family: 'Inter', sans-serif;4}5 6/* Animation for loading */7@keyframes pulse {8    0%, 100% {9        opacity: 1;10    }11    50% {12        opacity: 0.5;13    }14}15 16.animate-pulse {17    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;18}