customer-riverside/tailwind.config.js

17 lines
362 B
JavaScript
Raw Normal View History

2026-05-16 10:45:33 -08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./web/modules/custom/riverside_pt/templates/**/*.twig',
'./web/modules/custom/riverside_pt/src/**/*.php',
2026-05-24 23:32:23 -08:00
'./web/modules/custom/riverside_pt/js/components/**/*.js',
2026-05-16 10:45:33 -08:00
],
theme: {
2026-05-24 18:23:05 -08:00
extend: {
screens: {
'md': '920px',
},
},
2026-05-16 10:45:33 -08:00
},
plugins: [],
}