htmxui/tailwind.config.mjs

36 lines
635 B
JavaScript
Raw Normal View History

2024-10-25 01:46:50 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.rs"
],
corePlugins: {
container: false
},
theme: {
extend: {},
},
plugins: [
function({ addComponents }) {
addComponents({
'.container': {
maxWidth: '95%',
margin: "auto",
'@screen sm': {
maxWidth: '640px',
},
'@screen md': {
maxWidth: '768px',
},
'@screen lg': {
maxWidth: '1024px',
},
'@screen xl': {
maxWidth: '1280px',
},
}
})
}
],
}