23 lines
395 B
JavaScript
23 lines
395 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",
|
|
},
|
|
screens: {
|
|
"2sm": "320px",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|