Files
evilspins/tailwind.config.js
valere f59c496c5d
All checks were successful
Deploy App / build (push) Successful in 2m25s
Deploy App / deploy (push) Successful in 15s
route v1
2025-10-21 00:09:26 +02:00

26 lines
459 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./app.vue',
'./error.vue'
],
theme: {
extend: {
colors: {
esyellow: '#fdec50ff'
},
fontSize: {
xxs: '0.625rem' // 10px par exemple
},
screens: {
'2sm': '320px'
}
}
},
plugins: []
}