Files
ems/frontend/src/index.css
Dusan Vojacek 9f4126946d second version
2026-04-03 14:23:16 +02:00

30 lines
456 B
CSS

@import 'tailwindcss';
@config "../tailwind.config.ts";
@layer base {
:root {
--border-radius-md: 0.5rem;
--color-border-tertiary: rgb(51 65 85 / 0.6);
}
body {
@apply min-h-screen bg-slate-950 text-slate-100 antialiased;
}
}
@keyframes critical-pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.45;
}
}
@layer utilities {
.animate-critical-pulse {
animation: critical-pulse 1.1s ease-in-out infinite;
}
}