Files
TaskTracker/TaskTracker.Web/src/index.css

37 lines
580 B
CSS

@import "tailwindcss";
@theme {
--font-sans: 'Inter', system-ui, sans-serif;
}
@keyframes pulse-glow {
0%, 100% {
box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}
50% {
box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}
}
.animate-pulse-glow {
animation: pulse-glow 2s ease-in-out infinite;
}
/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #2a2d37;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #3a3d47;
}