16 lines
255 B
JavaScript
16 lines
255 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{astro,html,js,jsx,ts,tsx,vue}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
container: {
|
|
center: true,
|
|
padding: "1rem"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|