Spaces:
Build error
Build error
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| body { | |
| @apply bg-brand-dark text-slate-100 antialiased; | |
| } | |
| } | |
| .glass { | |
| background: rgba(15, 23, 42, 0.7); | |
| backdrop-filter: blur(14px); | |
| border: 1px solid rgba(255, 255, 255, 0.08); | |
| } | |
| .scanner-line { | |
| height: 2px; | |
| background: linear-gradient(90deg, transparent, #3b82f6, transparent); | |
| animation: scan 1.5s linear infinite; | |
| } | |
| @keyframes scan { | |
| from { transform: translateY(-100%); } | |
| to { transform: translateY(100%); } | |
| } | |