2023-10-25 23:52:01 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-10-29 00:07:24 +00:00
|
|
|
content: [
|
2024-10-04 23:40:03 +00:00
|
|
|
"./ngtemplates/**/*.{templ}",
|
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",
|
|
|
|
],
|
2023-10-25 23:52:01 +00:00
|
|
|
theme: {
|
2024-01-20 19:26:26 +00:00
|
|
|
extend: {
|
|
|
|
minWidth: {
|
|
|
|
40: "10rem",
|
|
|
|
},
|
|
|
|
},
|
2023-10-25 23:52:01 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|