mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-25 23:37:46 +03:00
994a58f0dc
* Improved Wasp AI CLI experience. * fix * Added CLI Usage, polished CLI commands. * Added choice of temperature. * Added styling. * Added more sophisticated, terminal-only styling. * fix * Updated Mage to use new Wasp CLI + added some messaging to CLI. * fix * Created wasp-ai/README, updated waspc/README. * Moved wasp-ai/ to mage/. * Final polishing (docs, readmes, messaging). * fix * Added tests for LogMsg. * Updated versions of test apps to 0.12. * fix * fix * Update mage/README.md * fix * fix
20 lines
446 B
JavaScript
20 lines
446 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
keyframes: {
|
|
jumping: {
|
|
"0%, 25%": { transform: "translateY(0)" },
|
|
"10%": { transform: "translateY(-7px)" },
|
|
"30%": { transform: "translateY(0)" },
|
|
},
|
|
},
|
|
animation: {
|
|
jumping: "jumping 3s ease infinite",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|