AnthoLume/tailwind.config.js

23 lines
456 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
module.exports = {
2023-10-29 00:07:24 +00:00
content: [
2024-01-25 02:40:14 +00:00
"./templates/**/*.{tmpl,html,htm,svg}",
2023-12-01 12:35:51 +00:00
"./assets/local/*.{html,htm,svg,js}",
"./assets/reader/*.{html,htm,svg,js}",
2023-10-29 00:07:24 +00:00
],
2024-01-24 04:00:51 +00:00
safelist: [
"peer-checked/All:block",
"peer-checked/Year:block",
"peer-checked/Month:block",
"peer-checked/Week:block",
],
theme: {
extend: {
minWidth: {
40: "10rem",
},
},
},
plugins: [],
};