AnthoLume/tailwind.config.js
Evan Reichard 45cef2f4af
All checks were successful
continuous-integration/drone/push Build is passing
chore(formatting): djlint templates
2024-01-24 21:40:14 -05:00

23 lines
456 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./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: [],
};