This commit is contained in:
2026-08-08 18:59:56 +03:30
commit a949fc3766
175 changed files with 16575 additions and 0 deletions

19
tailwind.config.js Normal file
View File

@@ -0,0 +1,19 @@
module.exports = {
content: [
'./src/components/**/*.{js,jsx,ts,tsx}',
'./public/index.html',
'./tailwind.safetext.txt'
],
theme: {
extend: {
screens: {
xs: '475px'
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(var(--tw-gradient-stops))'
}
}
},
plugins: [require('tailwindcss-rtl')]
};