AnthoLume/tailwind.config.js
Evan Reichard a881351b84
Some checks reported errors
continuous-integration/drone/push Build was killed
geez
2024-10-04 19:40:03 -04:00

24 lines
490 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: [],
};