Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
charlottewiltshire0 committed Jan 4, 2025
1 parent dc274c9 commit 3441400
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ export default {
"shiny-text": "shiny-text 8s infinite",
marquee: "marquee var(--duration) infinite linear",
"marquee-vertical": "marquee-vertical var(--duration) linear infinite",
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
keyframes: {
gradient: {
Expand Down Expand Up @@ -104,6 +106,22 @@ export default {
transform: "translateY(calc(-100% - var(--gap)))",
},
},
"accordion-down": {
from: {
height: "0",
},
to: {
height: "var(--radix-accordion-content-height)",
},
},
"accordion-up": {
from: {
height: "var(--radix-accordion-content-height)",
},
to: {
height: "0",
},
},
},
},
},
Expand Down

0 comments on commit 3441400

Please sign in to comment.