bin/tailwind.config.js

14 lines
205 B
JavaScript
Raw Permalink Normal View History

2023-09-10 23:40:19 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,templ,js}"],
theme: {
extend: {
minWidth: {
"32": "32rem"
}
},
},
plugins: [],
}