This commit is contained in:
ct
2025-07-01 20:54:26 +08:00
parent 70898ccd4c
commit 79e7d7a49e
42 changed files with 2742 additions and 97 deletions

View File

@@ -172,6 +172,23 @@ @theme inline {
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
--animate-pulse: pulse var(--duration) ease-out infinite;
@keyframes pulse {
0%, 100% {
boxShadow: 0 0 0 0 var(--pulse-color);
}
50% {
boxShadow: 0 0 0 8px var(--pulse-color);
}
}
@keyframes pulse {
0%, 100% {
boxShadow: 0 0 0 0 var(--pulse-color);
}
50% {
boxShadow: 0 0 0 8px var(--pulse-color);
}
}
}
/*
@@ -185,4 +202,4 @@ @layer base {
body {
@apply bg-background text-foreground;
}
}
}