mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-20 03:31:48 +00:00
Initial commit
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user