Files
claude-mnemonic/ui/src/assets/main.css
T
2025-12-19 02:17:02 +00:00

34 lines
592 B
CSS

@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; }
}
}