feat(www): Finish up on the UI components (#158)

This commit is contained in:
Wanjohi
2025-01-14 03:24:53 +03:00
committed by GitHub
parent a3ff8bff9f
commit 3be481e260
7 changed files with 629 additions and 73 deletions

View File

@@ -1,4 +1,5 @@
import colors from "tailwindcss/colors";
import tailwindcssAnimate from "tailwindcss-animate"
/** @type {import('tailwindcss').Config} */
export default {
@@ -154,10 +155,10 @@ export default {
"shake": "shake 0.075s 8",
"multicolor": "multicolor 5s linear 0s infinite",
"zoom-out": "zoom-out 5s ease-out",
"fade-in":"fade-in .3s ease forwards"
"fade-in": "fade-in .3s ease forwards",
},
},
plugins: []
plugins: [tailwindcssAnimate]
}
}