mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- fix overshooting podcast name when too long in podcast sidebar - update npm packages to latest versions fixes #59
20 lines
476 B
JavaScript
20 lines
476 B
JavaScript
/* eslint-disable */
|
|
|
|
module.exports = {
|
|
purge: ["./app/Views/**/*.php", "./app/Views/**/*.ts", "./app/Helpers/*.php"],
|
|
theme: {},
|
|
variants: {
|
|
textDecoration: ["responsive", "hover", "focus", "group-hover"],
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/custom-forms"),
|
|
require("@tailwindcss/typography"),
|
|
],
|
|
future: {
|
|
removeDeprecatedGapUtilities: true,
|
|
purgeLayersByDefault: true,
|
|
defaultLineHeights: true,
|
|
standardFontWeights: true,
|
|
},
|
|
};
|