AnthoLume/tailwind.config.js
Evan Reichard d70a506b82
Some checks reported errors
continuous-integration/drone/push Build was killed
geez
2024-10-05 20:21:32 -04:00

24 lines
488 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./ngtemplates/**/*.templ",
"./templates/**/*.{tmpl,html,htm,svg}",
"./assets/local/*.{html,htm,svg,js}",
"./assets/reader/*.{html,htm,svg,js}",
],
safelist: [
"peer-checked/All:block",
"peer-checked/Year:block",
"peer-checked/Month:block",
"peer-checked/Week:block",
],
theme: {
extend: {
minWidth: {
40: "10rem",
},
},
},
plugins: [],
};