lightning-auth-and-payment
Version:
Lightning Network authentication and payment processing library for modern web applications
25 lines (21 loc) • 361 B
CSS
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: system-ui, sans-serif;
}
}
@layer utilities {
.animate-glow {
animation: glow 2s ease-in-out infinite alternate;
}
}
@keyframes glow {
from {
text-shadow: 0 0 20px #f97316;
}
to {
text-shadow: 0 0 30px #f97316, 0 0 40px #f97316;
}
}