Merge version_1 into main #3

Merged
development merged 9 commits from version_1 into main 2026-01-20 13:59:57 +00:00
Showing only changes of commit bc90daf478 - Show all commits

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: [],
}
}