route v1
All checks were successful
Deploy App / build (push) Successful in 2m25s
Deploy App / deploy (push) Successful in 15s

This commit is contained in:
valere
2025-10-21 00:09:26 +02:00
parent 61b0b6395f
commit f59c496c5d
18 changed files with 391 additions and 137 deletions

View File

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