wasp/mage/tailwind.config.cjs
Martin Šošić a445da9ed0
Mage 0.12 producing 0.11 (#1805)
* Upgraded Mage to Wasp 0.12 while producing Wasp 0.11.4 apps.

* Rearranged imports to be nicer.

* Updated tsconfig.json and .gitignore according to new changes to wasp new.
2024-02-26 16:25:47 +01:00

22 lines
519 B
JavaScript

const { resolveProjectPath } = require('wasp/dev');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [resolveProjectPath("./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: [],
};