26 lines
459 B
JavaScript
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: []
|
|
}
|