Files
commandcenter-websource/tailwind.config.js
2023-04-20 12:05:32 +02:00

17 lines
331 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
animation: {
wiggle: 'wiggle 1s ease-in-out infinite',
'spin-slow': 'spin 3s linear infinite',
},
scale: {
200: '2.00',
},
},
},
plugins: [],
}