style: pretty up; fix extension shadcn

This commit is contained in:
Simon
2026-02-14 15:12:45 +08:00
parent 53144a8021
commit 66cc9e0a3c
6 changed files with 261 additions and 20 deletions

View File

@@ -111,17 +111,40 @@
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
--animate-blink-cursor: blink-cursor 1.2s step-end infinite;
@keyframes blink-cursor {
0%,
49% {
opacity: 1;
}
50%,
100% {
opacity: 0;
}
}
}
@keyframes glow-breathe {
@keyframes glow-a {
0%,
100% {
opacity: 0.45;
transform: scale(1);
}
50% {
opacity: 0;
transform: scale(1.1);
}
}
@keyframes glow-b {
0%,
100% {
opacity: 0;
transform: scale(0.85);
transform: scale(1.1);
}
50% {
opacity: 0.35;
transform: scale(1.1);
opacity: 0.45;
transform: scale(1);
}
}