This commit is contained in:
2023-04-20 12:05:32 +02:00
commit 9975bbb42c
30 changed files with 11480 additions and 0 deletions

16
tailwind.config.js Normal file
View File

@@ -0,0 +1,16 @@
/** @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: [],
}