Make the sidebar an animated accordion with a softer hover

This commit is contained in:
Steven RYDELL
2026-07-29 07:32:36 +02:00
parent 956212031a
commit 149524376b
3 changed files with 125 additions and 57 deletions
+21
View File
@@ -131,6 +131,27 @@
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--animate-collapsible-down: collapsible-down 0.2s ease-out;
--animate-collapsible-up: collapsible-up 0.2s ease-out;
@keyframes collapsible-down {
from {
height: 0;
}
to {
height: var(--radix-collapsible-content-height);
}
}
@keyframes collapsible-up {
from {
height: var(--radix-collapsible-content-height);
}
to {
height: 0;
}
}
}
@layer base {