12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./server/router/pages/*.templ"],
|
||
|
theme: {
|
||
|
container: {
|
||
|
center: true,
|
||
|
padding: '1rem'
|
||
|
},
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|