Spaces:
Sleeping
Sleeping
File size: 272 Bytes
f8dbd20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-slate-900 text-white antialiased;
}
}
/* Custom Styles */
.glass-card {
@apply bg-white/10 backdrop-blur-lg border border-white/20 rounded-2xl shadow-xl;
}
|