Create HGTX PromptLab UI

This commit is contained in:
gpt-engineer-app[bot]
2025-10-29 12:06:30 +00:00
parent d712cc7bb5
commit 6efb71b59b
13 changed files with 784 additions and 59 deletions
+29
View File
@@ -80,10 +80,39 @@ export default {
height: "0",
},
},
"fade-in": {
"0%": {
opacity: "0",
transform: "translateY(10px)"
},
"100%": {
opacity: "1",
transform: "translateY(0)"
}
},
"scale-in": {
"0%": {
transform: "scale(0.95)",
opacity: "0"
},
"100%": {
transform: "scale(1)",
opacity: "1"
}
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
"fade-in": "fade-in 0.3s ease-out",
"scale-in": "scale-in 0.2s ease-out",
},
boxShadow: {
'card': 'var(--shadow-card)',
'hover': 'var(--shadow-hover)',
},
transitionTimingFunction: {
'smooth': 'cubic-bezier(0.4, 0, 0.2, 1)',
},
},
},