Update tailwind.config.js

This commit is contained in:
2026-01-20 13:59:52 +00:00
parent ded66217a9
commit bc90daf478

View File

@@ -1,9 +1,19 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}"],
"./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"
],
darkMode: 'class',
theme: {
extend: {},
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
animation: {
'pulse': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'bounce': 'bounce 1s infinite',
}
},
},
plugins: [],
}
}