castopod/tailwind.config.js
Yassine Doghri 40a0535fc1 feat(public-ui): adapt public podcast and episode pages to wireframes
- adapt wireframes with responsive design
- refactor models methods to cache requests for faster queries
- update public controllers to cache pages while retaining analytics hits
- add platform links to podcast page
- add previous / next episodes in episode page
- update npm packages to latest versions

closes #30, #13
2020-10-15 14:41:43 +00:00

16 lines
322 B
JavaScript

/* eslint-disable */
module.exports = {
purge: ["./app/Views/**/*.php", "./app/Views/**/*.ts"],
theme: {
extend: {},
},
variants: {
textDecoration: ["responsive", "hover", "focus", "group-hover"],
},
plugins: [
require("@tailwindcss/custom-forms"),
require("@tailwindcss/typography"),
],
};