uiowaATR/tailwind.config.cjs
2023-04-11 00:52:51 -05:00

26 lines
634 B
JavaScript

/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
keyframes: {
expand_in_out: {
'0%, 100%': { transform: 'scale(1)' },
'50%': { transform: 'scale(1.1)' },
},
slide_left_full: {
'0%': { transform: 'translate(0%)' },
'100%': { transform: 'translate(-50%)' },
}
},
animation: {
expand_in_out: 'expand_in_out 2s ease-in-out infinite',
slide_survey_page: 'slide_left_full 1s ease-in-out',
},
},
},
plugins: [],
};
module.exports = config;