We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e3a35 commit 4d50c1fCopy full SHA for 4d50c1f
src/app/global.css
@@ -46,6 +46,8 @@
46
--color-sidebar-ring: var(--sidebar-ring);
47
--animate-ripple: ripple var(--duration, 2s) ease calc(var(--i, 0) * 0.2s)
48
infinite;
49
+ --animate-accordion-down: accordion-down 0.2s ease-out;
50
+ --animate-accordion-up: accordion-up 0.2s ease-out;
51
@keyframes ripple {
52
0%,
53
100% {
@@ -55,6 +57,22 @@
55
57
transform: translate(-50%, -50%) scale(0.9);
56
58
}
59
60
+ @keyframes accordion-down {
61
+ from {
62
+ height: 0;
63
+ }
64
+ to {
65
+ height: var(--radix-accordion-content-height);
66
67
68
+ @keyframes accordion-up {
69
70
71
72
73
74
75
76
77
78
:root {
0 commit comments