2024-07-10 04:11:28 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-07-10 04:21:22 +00:00
|
|
|
content: ["./server/router/pages/**/*.templ"],
|
2024-07-10 04:11:28 +00:00
|
|
|
theme: {
|
|
|
|
container: {
|
|
|
|
center: true,
|
|
|
|
padding: '1rem'
|
|
|
|
},
|
|
|
|
extend: {},
|
|
|
|
},
|
2024-07-10 05:35:07 +00:00
|
|
|
plugins: [
|
|
|
|
function ({ addComponents }) {
|
|
|
|
addComponents({
|
|
|
|
'.container': {
|
|
|
|
'@screen lg': {
|
|
|
|
maxWidth: '768px',
|
|
|
|
},
|
|
|
|
'@screen xl': {
|
|
|
|
maxWidth: '768px',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
],
|
2024-07-10 04:11:28 +00:00
|
|
|
}
|