AnthoLume/tailwind.config.js
Evan Reichard f0a2d2cf69
All checks were successful
continuous-integration/drone/push Build is passing
[add] better log page, [add] admin users page, [add] admin nav
2024-01-20 15:03:32 -05:00

17 lines
308 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}",
],
theme: {
extend: {
minWidth: {
40: "10rem",
},
},
},
plugins: [],
};