bin/tailwind.config.js

14 lines
205 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,templ,js}"],
theme: {
extend: {
minWidth: {
"32": "32rem"
}
},
},
plugins: [],
}