delphi.market/tailwind.config.js

30 lines
565 B
JavaScript
Raw Normal View History

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: {
colors: {
'background': '191d21',
'muted': '#6c757d',
},
},
2024-07-10 04:11:28 +00:00
},
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
}