Skip to content

Commit 431cab9

Browse files
committed
fix: missing keyframes
1 parent ec20560 commit 431cab9

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.changeset/hot-results-give.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-yuki-stack": patch
3+
---
4+
5+
add missing keyframes

cli/templates/packages/ui/src/tailwind.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,30 @@
6767
--shadow-lg: var(--shadow-lg);
6868
--shadow-xl: var(--shadow-xl);
6969
--shadow-2xl: var(--shadow-2xl);
70+
71+
@keyframes accordion-down {
72+
from {
73+
height: 0;
74+
}
75+
to {
76+
height: var(
77+
--radix-accordion-content-height,
78+
var(--accordion-panel-height, auto)
79+
);
80+
}
81+
}
82+
83+
@keyframes accordion-up {
84+
from {
85+
height: var(
86+
--radix-accordion-content-height,
87+
var(--accordion-panel-height, auto)
88+
);
89+
}
90+
to {
91+
height: 0;
92+
}
93+
}
7094
}
7195

7296
:root {

0 commit comments

Comments
 (0)