/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./assets/**/*.js", "./templates/**/*.html.twig", ], theme: { extend: {}, screens: { sm: '640px', // Small screens start at 640px md: '768px', lg: '1024px', xl: '1280px', '2xl': '1536px', }, }, plugins: [], }