@dowel-ui/themes 0.4.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/tokens.css CHANGED
@@ -140,6 +140,8 @@
140
140
 
141
141
  --animate-accordion-open: accordion-open var(--duration-normal) var(--ease-out-quint);
142
142
  --animate-accordion-close: accordion-close var(--duration-fast) var(--ease-in-quint);
143
+ --animate-collapse-down: collapse-down var(--duration-normal) var(--ease-out-quint);
144
+ --animate-collapse-up: collapse-up var(--duration-fast) var(--ease-in-quint);
143
145
 
144
146
  @keyframes fade-in {
145
147
  from {
@@ -242,6 +244,24 @@
242
244
  }
243
245
  }
244
246
 
247
+ @keyframes collapse-down {
248
+ from {
249
+ height: 0;
250
+ }
251
+ to {
252
+ height: var(--radix-collapsible-content-height);
253
+ }
254
+ }
255
+
256
+ @keyframes collapse-up {
257
+ from {
258
+ height: var(--radix-collapsible-content-height);
259
+ }
260
+ to {
261
+ height: 0;
262
+ }
263
+ }
264
+
245
265
  @keyframes spin {
246
266
  to {
247
267
  transform: rotate(360deg);