Files
train-quiz/tailwind.config.mjs
T
2024-10-07 23:06:00 -04:00

20 lines
492 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
keyframes: {
bump: {
"0%": { transform: "rotate(-30deg) scale(1)" },
"50%": { transform: "rotate(-30deg) scale(1.05)" },
"100%": { transform: "rotate(-30deg) scale(1)" },
},
},
animation: {
bump: "bump 0.5s ease infinite",
},
},
},
plugins: [],
};