AnthoLume/tailwind.config.js
Evan Reichard 35ca021649
All checks were successful
continuous-integration/drone/push Build is passing
add: more statistics
2024-01-23 23:00:51 -05:00

23 lines
451 B
JavaScript

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