Initial commit

This commit is contained in:
2025-12-14 21:59:59 +00:00
commit feb7f251b4
125 changed files with 21727 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
/* Glass morphism effect */
.glass {
@apply bg-white/5 backdrop-blur-xl;
}
/* Scrollbar styling */
.scrollbar-thin::-webkit-scrollbar {
width: 6px;
}
.scrollbar-thin::-webkit-scrollbar-track {
@apply bg-black/10 rounded;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
@apply bg-white/20 rounded;
}
/* Pulse animation for status dots */
.pulse-dot {
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
}