customer-riverside/tailwind.config.js

24 lines
738 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: {
// Adjusted for current hybrid usage (hero changes at sm, header/layout at md)
'sm': '768px', // iPad portrait + when hero layout activates
'md': '1024px', // Desktop start (header fixed, mission row, etc.)
'lg': '1280px', // Large desktop
2026-06-01 01:21:51 -08:00
'2xl': '1780px', // Ultra-wide
2026-05-24 18:23:05 -08:00
},
fontFamily: {
hedvig: ['Hedvig Letters Sans', 'sans-serif'],
},
2026-05-24 18:23:05 -08:00
},
2026-05-16 10:45:33 -08:00
},
plugins: [],
}